ios7 tableview被navigationbar擋住

用ego下拉刷新的時候,每次在ios7時,tableview都會上移。。。致使被navagationbar擋住。
ios6是正常的,因而在init的時候添加以下代碼。。。
1 NSComparisonResult order = [[UIDevice currentDevice].systemVersion compare: @"7.0" options: NSNumericSearch];
2 if (order == NSOrderedSame || order == NSOrderedDescending)
3 {
4     // OS version >= 7.0
5     self.edgesForExtendedLayout = UIRectEdgeNone;
6 }

 

轉自:http://www.cnblogs.com/x1957/archive/2013/09/29/3345264.htmlhtml

相關文章
相關標籤/搜索