user1413409
user1413409

Reputation: 11

Can someone help me understand how XCode works?

I've been learning Python for about a year, but I thought I'd try my hand at iOS programming, so I bought a tutorial book. Unfortunately, the book uses an outdated version of XCode. Apparently, the ES1REnderer class files used in the book are no longer default classes. So, I checked Apple's developer website to see if they could help me, but they only have tutorials on XCode 4, and due to the fact that I don't have Lion, I'm using XCode 3.2.6. So my question is, should I just put all the code that would go in the ES1Renderer class files into the View Controller classes, or should I just find a new tutorial? I'm new to iOS coding, and Objective C in general, so any help is much appreciated.

Upvotes: 0

Views: 482

Answers (1)

sunilg
sunilg

Reputation: 61

Stick with the latest version of xcode and whenever you see a deprecated method from your book, look up apple's documentation to see what is the replacement.

Upvotes: 2

Related Questions