About iPhone/iPad development

First i would apologize if this have been asked before. i have looked and not found.

I am considering purchasing Unity 3d Pro to develop for IOS and have a few questions regarding that:

  1. I have checked tutorials but do not understand how, and if, Objective-C is needed?

  2. If so (1), where?

  3. If not, does Unity have support for the iPhone exclusive features that can be performed by touch, mapkit, keyboard etc.?

  4. How portable is a project between different platforms such as IOS, Android etc.?

Cheers

You don't need Objective-C, but if you want to write any plugins that access the OS features (such as using mapkit), then you'll need it.

There isn't a whole lot of Unity support for OS features since you can pretty easily do it yourself. Touches work natively. There is no "keyboard" support, just text fields that call up the OS keyboard or can use an attached bluetooth keyboard (this is true even for native apps). Other than that you're pretty much on your own.

Projects are pretty portable. You can just wrap interop methods (how you access native code) with #if UNITY_IPHONE and they won't be compiled for android versions.