IOS7下UISearchBar 光标不出现的问题

去掉搜索框背景的代码(支持ios6/7/8)

for (UIView *view in self.mySeachBar.subviews) {
    if ([view isKindOfClass:NSClassFromString(@"UISearchBarBackground")]) {
        [view removeFromSuperview];
        break;
    }
    if ([view isKindOfClass:NSClassFromString(@"UIView")] && view.subviews.count > 0) {
        [[view.subviews objectAtIndex:0] removeFromSuperview];
        break;
    }
}

app支持ios7,在UINavBar 里面加入搜索框,结果光标一直出现不了。在stackoverflow网站搜索了一下,竟然有人遇到相同的问题。。。。

解决办法如下:

searchBar.tintColor = [UIColor blueColor];

原文地址:
http://stackoverflow.com/questions/19232296/cursor-not-displaying-in-uisearchbar-for-our-app

你可能感兴趣的:(IOS7下UISearchBar 光标不出现的问题)