vote up 14 vote down star
17

What are some key tools needed when you are first starting out in developing your first iPhone application?

  1. Software Tools
  2. IDEs
  3. Tool Chains
  4. Blog Posts
  5. Etc.
flag

1  
I gave up when I found that I needed an Apple computer to do development. – sylvarking Dec 1 '08 at 20:20
1  
I wish they would just release a VM and get off this hardware is tied to the OS model – Nick Berardi Dec 2 '08 at 16:34
There is an iPhone simulator, which is part of the IDE download. Of course it only runs on Mac OS X as well. I don't see the problem, though, Macs are great computers, and the whole experience is very cohesive and pleasant. – harms Dec 2 '08 at 17:18
1  
I second that 'harms'. I just got an iMac after developing on PCs since "the beginning", and even mainframe development. I am shocked at how comfortable the experience is. I dont know if its MAC OS X or the new machines, but the experience is great. A++ in my book. Now to develop for the iPhone! – Optimal Solutions Mar 30 at 19:13
1  
Mac is just as proprietary as Microsoft. You don't see MS releasing .NET onto the Mac, and you won't see Cocoa released onto the PC. You can developer for PC proprietary systems only with a PC (the .NET platform). You can develop only for a Mac (the Cocoa platform) only from a Mac. We, as PC users, are just too used to having everything "just work" for the PC :p – Organiccat May 20 at 15:02
show 1 more comment

12 Answers

vote up 15 vote down check

The IDE, which is part of the iPhone SDK download, is XCode 3.1. You need to run on an Apple Mac using an Intel CPU and running Mac OS X 10.5 "Leopard".

You'll need to learn the programming language Objective-C.

The main library that you'll use is called Cocoa-Touch, a variant of the Cocoa framework used on Apple's regular computers.

A good starting point is the sample projects, documentation and video tutorials at the Apple website that brd6644 mentioned.

Good luck! :-)

link|flag
vote up 7 vote down

I too am looking to start coding the for iPhone, and had never coded in Objective-C or worked with the Cocoa framework. I recently ordered Cocoa Programming for Mac OS X by Aaron Hillegass and have found it to be an excellent starting point.

link|flag
Patrick - what has your experience been so far with this development? Would you [still] recommend the book you've mentioned here? – itsmatt Mar 20 at 23:45
Hey! Was having a tough time picking up the Objective-C language/syntax, so I grabbed "Learn Objective C on the Mac" (tinyurl.com/d5fqkn) and it has been the perfect book to learn Obj-C. I may even grab another Apress book, Beginning iPhone Development (tinyurl.com/42ablp) afterwards. – Patrick Harrington Mar 23 at 13:42
vote up 6 vote down

These aren't totally iPhone specific, but for some general background:

That's a good start.

link|flag
vote up 5 vote down

I found this tutorial very helpful: appsamuck

Good luck!

link|flag
vote up 5 vote down

The Pragmatic Programmers have got a free Getting started with Xcode and Interface Builder screencast available which should give you a good feel for what iPhone development is like.

link|flag
vote up 3 vote down

http://developer.apple.com/iphone

You can get the iPhone SDK from there which includes the IDE, debugger, iPhone emulator, etc.

link|flag
vote up 3 vote down

In my opinion, the best way to begin is with the Stanford lectures. This is a course, with the first step on Objective-C, and numerous key subject on the Cocoa-Touch framework and the way to publish App on the store.

You'll find lot of useful resources.

link|flag
vote up 1 vote down

Once you get used to Objective-C, Cocoa and XCode, I highly recommand you The iPhone Developer's Cookbook.

It contains all the basic stuff you'll want to do inside your iPhone App, with a lot of clean code to start with.

link|flag
Just got the cookbook, it's does a great job tying a lot of the things we learned from the Apple Dev site together. – OhioDude Jul 3 at 13:18
vote up 1 vote down

Getting started with iPhone Development Tutorial---- iPhone development guide in details with videos to step up your Xcode and help you to submit your application to apple store. http://adeem.me/blog/iphone-development-guide/

link|flag
vote up 0 vote down

You can develop for the iPhone purely using Open Web technology like jQuery or Ra-Ajax (Disclaimer; I work with Ra-Ajax) and as long as you don't need something really fancy implemented like Photo Shop 2.0 or games I'd strongly encourage you to STICK to Open Web.

By following Open Standards you can even mostly keep the exact same codebase for both your iPhone version and "everything else"...

link|flag
Unfortunately this precludes using most of the cool iPhone features, which is why developers wanted an SDK for native apps in the first place! – John Topley Dec 1 '08 at 20:42
vote up 0 vote down

My biggest hurdle is getting a Mac. Anyone know a way around that?

link|flag
Legally? Nope. A Mac Mini will only run you $600 and will be all that you need. – Patrick Harrington Dec 1 '08 at 20:22
1  
Hold up a few convenience stores. – Giao Dec 1 '08 at 20:30
Develop for Google's Android platform instead? – Matt Gallagher Dec 1 '08 at 23:16
I did some stuff on my Hackintosh but the problem there was that while I got it all to work just fine, Apple can move the bar anytime they want, requiring you to upgrade your OS to keep current with the SDK. So I bought a Mac Pro and now my office is dead silent, which is nice. – Genericrich Dec 31 at 19:19
vote up 0 vote down

I've been trying to immerse myself in the Mac world to pick this stuff up (been a .NET/Windows dev for years), but it's a huge paradigm shift. I just got Learn Objective–C on the Mac. It's very good so far. Also the Mobile Orchard podcast has been very informative.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.