- iPhone X适配时, 切换从横屏到竖屏的时候, 竖屏下面的scrollview会滑动44px, 很神奇, 不要慌, 最笨的方法只能是亡羊补牢了, 哪里不平, 我们去填哪里.
-(void)layoutSubviews{
if (kDevice_iPhoneX) {
dispatch_async(dispatch_get_main_queue(), ^{
[self scrollToIndex:self.tabSegmented.selectedSegmentIndex];
});
}
}
网友评论