scrollView上方的navigationBar漂移64point

很奇怪的事情发生了,不可思议,在scorllView上放置一个titleView视图,当跳转到详情页的时候再返回的时候发生了这一幕。
if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 7.0) {
self.edgesForExtendedLayout = UIRectEdgeNone;
self.extendedLayoutIncludesOpaqueBars = NO;
self.modalPresentationCapturesStatusBarAppearance = NO;
}
加上这几句代码后就可以解决了这个问题。

你可能感兴趣的:(scrollView上方的navigationBar漂移64point)