woodscreative
woodscreative

Reputation: 1031

Porting AS3 to iPhone App

Anybody know any good tut's for iPhone development? I have written a game in AS3 and have excellent knowledge of PHP/OOP etc but I cannot get my head around the iPhone SDK or the objective C syntax and structure.

Upvotes: 3

Views: 646

Answers (5)

Allan
Allan

Reputation: 3314

A popular resource is Standford University's lectuture slides for the iPhone Application Development unit available in pdf @ http://www.stanford.edu/class/cs193p/cgi-bin/drupal/

Upvotes: 1

Nimrod
Nimrod

Reputation: 5133

I recommend Beginning iPhone 4 Development by Mark LaMarche. There's also a "sequel" to this book. The Apple doc on Objective-C is also pretty good when it comes to understanding just the Objective-C language:

http://developer.apple.com/library/mac/#documentation/Cocoa/Conceptual/ObjectiveC/Introduction/introObjectiveC.html#//apple_ref/doc/uid/TP30001163-CH1-SW2

Upvotes: 1

cfischer
cfischer

Reputation: 24912

I'm in similar situation and these are the steps I'm following and the books I bought:

  1. Learn Objective C: "Programming in Objective C" by Stephen Kochan
  2. Learn Cocoa & AppKit: "Cocoa Programming for MacOS X"
  3. Learn Cocoa Touch (specific framework for iPHone): "iPhone for Programmers"

Good luck and have fun.

Upvotes: 1

Splashdust
Splashdust

Reputation: 787

Here's a good tut for the Obj-C basics: http://cocoadevcentral.com/d/learn_objectivec/

Upvotes: 1

Denis Hennessy
Denis Hennessy

Reputation: 7473

A great start is the stanford course (CS193P) which is available for download from iTunes University. That will get you general iOS programming knowledge.

After that, depending on the style of your game, it's worth looking at Cocos2d (an open-source 2D graphics library).

Upvotes: 1

Related Questions