okay two questions, 1. how do you force theos to use the 3.2 sdk (is it as simple replacing the 2.0 sdk with the 3.2 one? and 2. how would you develop a simple gui application for iPad using the sdk
If you haven't figured this out yet, and for anyone else looking for this information the solution is quite simple. In your Info.plist add the "UIDeviceFamily" key and an array with integer's for the devices you wish to support, 1 for iPhone/iTouch and 2 for iPad. Example.
<key>UIDeviceFamily</key>
<array>
<integer>1</integer>
<integer>2</integer>
</array>
This makes the app universal.