最近在开发的过程中,测试提了一个这样的bug:『当开启热点的时候,屏幕显示不完整。』
出现问题了
解决方案##
- 把绝对布局变为 autoLayout 。
- 使用通知进行重新布局。
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(statusBarDidChanged) name:UIApplicationDidChangeStatusBarFrameNotification object:nil];
网友评论