Objective-C Compiler And Editor [duplicate] - objective-c

This question already has answers here:
Objective-C for Windows
(14 answers)
Objective C on Windows or Linux
(4 answers)
Closed 9 years ago.
This is just an easy question!
I want to lean some objective-c but the problem I don't have a mac I've only PC with windows
is there any compiler and editor where I can type my code and run it on windows.
Thanks in advance.

Yes, you can learn Objective-C — for example, see here. But you won't be able to create OS X or iOS applications straight from a Windows machine.
You can try to install a Hackintosh or emulate OS X in VirtualBox or VMWare.
But, IMHO, all of this would be a real pain in the neck!

Related

How to create a daemon process in Golang? [duplicate]

This question already has answers here:
How to start a Go program as a daemon in Ubuntu?
(2 answers)
Closed 8 years ago.
Has anyone here written a deamon process in Golang? Can you walk me through how to do that? Useful links are welcome.
Yes this has been done. See the go-daemon project. Be aware that there are certain problems when the daemonization happens after goroutines are launched. See issue 227 for details.
At this time I'd recommend to use the utilities your operating system offers you. See this related question for solutions.

Is Objective C the preferred way to write OSX applications? [duplicate]

This question already has answers here:
What are alternatives to Objective-C for Mac programming?
(13 answers)
Do I have to learn Objective-C for professional Mac Development? [closed]
(17 answers)
Closed 9 years ago.
I've been assigned a new task at my company to rewrite one of applications to Mac OSX. I just started learning about OSX programming and it looks like the native language of Mac OSX is Objective C.
Therefor I've a question - is Objective C the preferred way to write OSX applications? And also does anyone know if there are alternatives to Objective C? (I'm already familiar with C and C++.)

updating an installed windows 8 32 bit to windows 8 64 bit [closed]

Closed. This question is not about programming or software development. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 4 months ago.
Improve this question
Just got myself a new Windows 8 tablet, which operates a 32 bit Win 8 (It was advertised as 64 bit on amazon, but that's another subject I guess).
My question is, can I upgrade the existing system to 64 bit, without having to set up win 8 again? I haven't found anything on google, not even someone with the same question which makes me kind of afraid there is no solution.. Anyway, here I am and ask :)
Any answers are kindly appreciated ^_^
There is no upgrade path when changing architecture, so no, you will have to do a complete reinstall when switching from 32bit to 64bit, no matter what hardware you are on.
Your data will be lost if you do not backup manually, all programs and drivers will need to be re-installed.To quote Microsofts official documentation:
If you want to move from a 32-bit version of Windows to a 64-bit version of Windows 7 or vice versa, you'll need to back up your files and choose the Custom option during Windows 7 installation. Then, you'll need to restore your files and reinstall your programs.

can you have a live tile within a Windows 8 app? [duplicate]

This question already has answers here:
Closed 10 years ago.
Possible Duplicate:
Using live tiles inside a windows 8 metro application
Could be a third party tool provider. If not is there a way to customize it to include live tiles inside the app?How?
The actual "live tiles" implementation is not available inside the App, but you can simulate them and their behaviour.
I think Callisto might be what you want, it's really easy to use.

Lint for Objective-C? [duplicate]

This question already has answers here:
Closed 10 years ago.
Possible Duplicate:
Code linting for Objective C
Is there any lint tool for Objective-c?
Xcode includes the Clang static analyzer, labeled as Build and Analyze (simply Analyze under Xcode 4).
http://clang-analyzer.llvm.org/xcode.html
Edit:
OCLint, based on Clang, provides additional checks of code style and complexity.http://oclint.org