我在UIScrollView
中有一些UIControllerView
,UINavigatorController
translucent = NO
,每次应用关闭时,当应用确实处于活动状态时,屏幕会关闭再出现一个黑色导航栏。
考虑到viewWillAppear
或viewDidAppear
未提出,我在UIViewController
[[NSNotificationCenter defaultCenter]addObserver:self
selector:@selector(didBecomeActive)
name:UIApplicationDidBecomeActiveNotification
object:nil];
}
在评估View,ScrollView和contentView(由ScrollView管理)后发生的事情后,我注意到滚动视图已移至 y = -64 。
但是当你拖动视图时我强制y = 0时,屏幕顶部会出现一个黑色区域。
有什么建议吗?
答案 0 :(得分:1)
在你的viewcontroller中尝试这个滚动视图
- (void)viewDidLoad {
[super viewDidLoad];
self.automaticallyAdjustsScrollViewInsets = NO;
}