Since I upgraded to Unity 4.5.1f3, I am now receiving this issue when trying to build an iOS project with Xcode 5.0.1:
*Semantic Issue: Classes/UnityAppController.mm:104:2: No matching function for call to 'OrientView'*
A little digging let me to discover that UnityAppController.mm is calling this:
OrientView(_rootView, orient);
However, the actual function definition in iPhone_OrientationSupport.mm is this:
void OrientView(UIViewController* host, UIView* view, ScreenOrientation to)
So, there is a parameter mismatch. But, I have no idea how to fix that. I didn't have this issue before upgrading. Is this is bug with Unity 4.5.1? Any suggestions how I might resolve it?
↧