我的應用程序使用cocos2D 2.1
,我使用Xcode 5
。編譯後,UINavigationBar
出現在我的應用程序的頂部。如何在iOS 7中專門爲cocos2D隱藏導航欄?
如何隱藏它?我已經嘗試了其他通用的iOS 7的代碼,似乎對本地工作的iOS 7應用:
// None of the following works
navController_ = [[UINavigationController alloc] initWithRootViewController:director_];
navController_.navigationBarHidden = YES;
navController_.edgesForExtendedLayout = UIRectEdgeNone;
[navController_.navigationBar setTranslucent:NO];
if ([[CCDirector sharedDirector] respondsToSelector:@selector(edgesForExtendedLayout)])
[CCDirector sharedDirector].edgesForExtendedLayout = UIRectEdgeNone;
最簡單的解決方案http://is.gd/FmHsf8 – Guru