码迷,mamicode.com
首页 > 其他好文 > 详细

uisearchDisplayController放在tableview里下拉刷新状态出现遮挡

时间:2015-02-12 18:31:29      阅读:193      评论:0      收藏:0      [点我收藏+]

标签:uisearchdisplaycontr   tableview   遮挡   

代码如下

- (void)viewDidLoad {
    [super viewDidLoad];

    UISearchBar * searchBar =[[UISearchBar alloc]initWithFrame:CGRectMake(0, 0, 320, 44)];
    self.tableView.tableHeaderView=searchBar;

    self.searchController =[[UISearchDisplayController alloc]initWithSearchBar:searchBar contentsController:self];

    //
    //(refreshing)
    //
    [self.tableView setContentInset:UIEdgeInsetsMake(128, 0, 0, 0)];
}

问题如图:

技术分享

问题:searchBar的视图中clipsToBounds 为yes

解决方法:自定义searchbar,重写layoutSubviews方法,把searchbar的所有subview的clipsToBounds重置为no

-(void)layoutSubviews{
    [super layoutSubviews];
    for (UIView * view in self.subviews) {
        view.clipsToBounds=NO;
    }
}


uisearchDisplayController放在tableview里下拉刷新状态出现遮挡

标签:uisearchdisplaycontr   tableview   遮挡   

原文地址:http://blog.csdn.net/yangzhen19900701/article/details/43764545

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!