UITableView不会反弹到顶部并且放错地方。 iOS 7问题

时间:2013-11-21 13:36:31

标签: objective-c uitableview ios7 uisearchbar

UITableView没有完全反弹并在UITableView和导航栏底部之间留下空白区域。在我的tableview的顶部是一个uisearchbar。 enter image description here

我尝试了这个,但它没有工作

[self.view bringSubviewToFront:self.searchBar];
[self.tableView setClipsToBounds:YES];
    if([[[UIDevice currentDevice] systemVersion] floatValue] >= 7.0) {
    CGRect statusBarViewRect = [[UIApplication sharedApplication] statusBarFrame];
    float heightPadding = statusBarViewRect.size.height+self.navigationController.navigationBar.frame.size.height;
    NSLog(@"%f",heightPadding);
    self.tableView.contentInset = UIEdgeInsetsMake(108.0, 0.0, 0.0, 0.0);
}

0 个答案:

没有答案