iOS 7 Searchbar右侧空白

今天在升级app到ios7时发现在我的tableviewcontroller界面里SearchBar右侧有一片空白。

iOS 7 Searchbar右侧空白

解决方式如下:

    if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 7)
    {
        [[UITableView appearance] setSectionIndexBackgroundColor:[UIColor clearColor]];
    }

- (void)viewDidLayoutSubviews {
    [super viewDidLayoutSubviews];
    
    CGRect barFrame = self.search.frame;
    barFrame.size.width = self.view.bounds.size.width;
    self.search.frame = barFrame;
}


你可能感兴趣的:(iOS 7 Searchbar右侧空白)