IOS game development

I just finished learning C on some website, and I covered most of the basic intermediate things.

Now I want to develop iPod \ iPad applications using Objective-C, as I realized that this is the best option. But, reading many manuals, I still have not come across one correct answer. Can you develop iOS applications using Objective-C on PC, Windows? I know you have to pay this $ 99 to be allowed to develop and access Apple classes, but everything is fine with me.

If you cannot do this on windows, what would be the next best option? I know that you can create iOS games using Unity and C #, I installed it, but I still have not figured out how to create an iOS project. And I could not find a simple guide for iPod applications with unity, that would be nice too.

If the best option is not unity, what will it be? I have average knowledge in .NET. (The way it seems in the forums I usually am in ... here I am a simple beginner) and I know that the C # syntax is better, but I know VB too. Both C and a bit of C ++.

Thanks:)

+4
source share
5 answers

the short answer is no. but there are ways to get around this if you do not want to place the application on the market.

+1
source

You can encode Objective-C on Windows, however you cannot compile it. http://kdevelop.org/ , http://code.google.com/p/objectiveclipse/ and http://www.bloodshed.net/devcpp.html Dev-C ++ are compatible, for example, with Objective-C . However, I had no experience with them.

Xcode is still better suited for this task, and I'm not sure what you would call the opportunity to “develop iOS apps on Windows,” but I usually code a bit in Notepad / GEdit, so the answer is “yes.” You will need a Mac to go somewhere further than coding, such as debugging.

+1
source

Another option is to create an iOS game using Flex 4.5, which allows you to write and test code on windows, and you can package it for iOS. But you need to learn ActionScript and MXML.

From the Adobe site

Flash Builder 4.5 includes full support for creating ActionScript® applications for Apple iOS. Flex support will be available later in 2011.

+1
source

Unity iOS does not have a free version of Unity. Instead, you should buy a separate license (in addition to the $ 99 that Apple will accuse of becoming a developer, I reckon.) I have never used Unity to develop games for iOS, so I don’t know how well this process works. .

Ideally, however, iOS development is really for the Mac. Xcode is the primary IDE used for iOS development, and only for Mac.

+1
source

you can check

Depending on what you are looking for, all of them have good documents that you can find out about their capabilities.

+1
source

All Articles