Ask YC: How is the iPhone SDK?
The iPhone 3G looks very promising, with a competitive price point to attract a greater number of users and Enterprise features to directly attack RIM. There is now an opportunity to create custom applications for the iPhone.
Has anyone tried to develop an application on the iPhone SDK yet, and if so, how has it gone so far?
8 comments
[ 3.4 ms ] story [ 27.5 ms ] threadI am on the developer program and one thing you should be careful about if you develop using the simulator is to use only the published APIs within the iPhone developer website. The simulator will sometimes let you use API's that are available on the Mac but not (yet?) on the phone. I've run into a couple of cases where this can be an issue.
i applied to get one of the developer keys, but apple didn't pick me. they did pick another guy i used to work with though, despite the fact that he has pretty much zero mac development experience, and no plans to develop any real apps. i'm pretty sure they handed out the keys to the first 4,000 people who asked for them, without checking qualifications at all. you can still develop for the simulator without the key, though.
i'm hoping to have a demo app done in a couple of weeks, so that i can convince some startup to hire me to do iphone development.
1) Objective-C is easy to pick up for C++/C#/Java developer. Strange at first but you get used to it. Lack of garbage collection on iPhone is a big disappointment given that it's available on MacOS X. Integration with C++ libraries is straightforward.
In general development is somewhat slower than for Andoid or even WinMo, but result is nicer/smoother looking. Tools are OK, editing in XCode lacks some features you get used to in Eclipse or Visual Studio. It's free (unlike Visual Studio), but obviously you need Apple hardware to run it.
2) UI: there is no layout engine to speak of, so some things require more work than in Android for example. From other hand some very nice standard controls are provided (navigation bar, table view is very customizable etc.). Surprisingly some things you would expect are absent: glass buttons used in Apple apps and alerts, function to get height of the keyboard for laying out your controls accordingly, etc.
3) Apple seems somewhat restrictive about access to their developer program (and without this it's all pointless - you are not going to get access to the store). We got ours, but it took some time and they lurked on our website a bit probably to make sure that we are real.
4) Safari web apps look quite solid and it's possible to make them well integrated with the iPhone. Now with the SQLite access from Safari for the local storage for many kinds of apps it makes sense to be developed as web apps because it's generally faster to develop and easier to distribute.
5) I wish Apple would officially support Python for iPhone development.