为了账号安全,请及时绑定邮箱和手机立即绑定

如图,发现在navigationBar和自己写的布局中间会有大约20像素的空隙?为什么?

如图,发现在navigationBar和自己写的布局中间会有大约20像素的空隙?为什么?

iOS
眼眸繁星 2023-04-15 23:19:16
给项目添加一个navigationcontroller,但是发现在navigationBar和自己写的布局中间会有大约20像素的空隙,现在用的是ios sdk6 xode4.5以前用sdk5.0 xcode4.2的时候不会有这样的现象的这是怎么回事呢代码如下还有这个是初始页面,通过跳转回到这个页面的时候却没问题了- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];self.viewController = [[RootViewController alloc] initWithNibName:@"RootViewController" bundle:nil];self.window.rootViewController = self.viewController;self.navigationController=[[UINavigationControlleralloc]initWithRootViewController:self.viewController]; [self.window addSubview:navigationController.view]; [self.window makeKeyAndVisible];return YES; }
查看完整描述

1 回答

?
至尊宝的传说

TA贡献1789条经验 获得超10个赞

因为你的view初始化时写的 initWithFrame:CGRectMake(0,20,320,xxx),这个frame是相对屏幕的
现在加了navigation bar之后,frame是相对于navigation bar的,应该改为

initWithFrame:CGRectMake(0,0,320,xxx)


查看完整回答
反对 回复 2023-04-18
  • 1 回答
  • 0 关注
  • 126 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信