Reputation: 18754
Just a quick question. If I learn how to develop apps for IPhone using XCode, Cocoa, Objective-C etc. (and probably the book Programming in Objective-C by Stephen Kochan) will I be able to start developing apps for ipad right away? or there are some fundamental differences besides their size ? Thanks.
Upvotes: 2
Views: 149
Reputation: 13694
iPad Development is done under the same language/framework (Objective C and Cocoa Touch) and you can create joint iPhone/iPad Projects so the answer is yes.
There are a few more UI components on the iPad than on the iPhone such as Popovers and Split Views but once you get a fundamental understanding on either device you'll easily be able to adapt.
Upvotes: 0
Reputation: 327
The Human Interface Guides are slightly different because you have different controls available to you. But the code style is the same.
Upvotes: 2