在iOS 7中,蘋果引入了一個(gè)新的屬性,叫做[UIViewController setEdgesForExtendedLayout:],它的默認(rèn)值為UIRectEdgeAll。
當(dāng)容器是NavigationController時(shí),默認(rèn)的布局將從NavigationBar的頂部開始。這就是為什么所有的UI元素都往上漂移了44pt。
為了做適配,可以這樣寫:
if ([self respondsToSelector:@selector(setEdgesForExtendedLayout:)]) {
self.edgesForExtendedLayout = UIRectEdgeNone;
}
如果對(duì)setEdgesForExtendedLayout有反應(yīng),則說明是iOS 7以上版本,默認(rèn)UIRectEdgeAll,UI元素會(huì)往上漂移,需要設(shè)置回UIRectEdgeNone。