Hi guys,
Before i have entered into this title, i need to say something...i got lot problems when i build my unity projects in to xcode.. there is no documents and clear ideas for beginner to buid their game in unity for iphone..
Boring?? ok we may enter now...
1. Before you start games for iphone in unity you need to know what are all the points will support and wont support in iphone... so all the beginners in unity and experienced should refer this first..
http://unity3d.com/support/documentation/Manual/iphone-GettingStarted.html
2. First drawback i faced was Unity Terrains wont be support in IPhone. Because of unity terrains are showing real time basis. so the memory should be very high. It'll be one of the reason iphone should not accept it.
3. You cant use OnMouseDown(),OnMouseEnter(),OnMouseOver(),OnMouseExit(),OnMouseDrag(),OnMouseUp() functions for iPhone...you may use "Input.GetMouseButtonDown(0) and Input.GetMouseButtonUp(0)" instead for that kind of functions. you must done it with raycast for touch or click for both iPhone and webplayers.
4. After you have done the project you must set the correct player settings for ios. if you not enter the correct details in player settings surely you'll get these kind of errors in xcodes. i have asked questions about the errors which i have faced in this kind of mistake. see this link
http://forum.unity3d.com/threads/79530-Bunch-of-errors-when-build-unity-in-xCode and you may check this link also
http://forum.unity3d.com/threads/78305-Xcode-simulator-error. and dont get confuse with native plugins.. we may not use it.
The errors will come like this..in "Xcode"
a)
RegisterAllStrippedInternalCalls() in RegisterMonoModules.o
b) If you add the native plugin program in to your unity project you'll get error like
error: 'mono_dl_register_symbol' was not declared in this scope.
c)
"_FooPluginFunction", referenced from:
_FooPluginFunction$non_lazy_ptr in RegisterMonoModules.o
(maybe you meant: _FooPluginFunction$non_lazy_ptr)
ld: symbol(s) not found
collect2: ld returned 1 exit status
So,dont add the native plugin for unwanted reason. the reason has clearly mentioned in this link
http://unity3d.com/support/documentation/Manual/Plugins.html#iPhonePlugins
5. Solutions for these kind Of problems are:
a)
you must enter correct player settings in Unity -> File -> BuildSettings -> Player Settings..
b) first you may check and select the static batching and uncheck the dynamic batching...
c) give the correct target ios verson..
d) give the correct platform you want to run unity. Because unity 3.0 wont run and work with simulator. you need to upgrade to unity 3.2.
e) Choose the current ios verson 4.0 or 4.1 or 4.2 anything.
f) Use always .Net 2.0 for compability.
g) set target platform to universal arvm6.0(openGl 2.0).
Now you may run your project. it'll build successfully.
Thank you,
Sriram.