我在我的應用程序代理添加以下代碼來創建狀態欄下方的部分(如代碼後的截圖所示)如何移動導航欄位置在屏幕上
UIWindow *statusWindow = [[UIWindow alloc] initWithFrame:CGRectMake(0, 20, 320, 20)];
statusWindow.windowLevel = UIWindowLevelStatusBar;
statusWindow.hidden = NO;
statusWindow.backgroundColor = [UIColor colorWithWhite:0.0 alpha:0.7];
[statusWindow makeKeyAndVisible];
如何向下移動導航欄,使黑色疊加層不與導航欄重疊?從本質上講,我想實現下面的截圖一樣的效果在於:
對此有何意見或資源將不勝感激。
是的,不要觸摸狀態欄。蘋果會爲您的提交路徑做不愉快的事情。 –