iOS 7.1 UISearchBar灰色视图

use*_*982 4 uisearchbar ios7.1

我在一个应用程序上工作,今天我在iOS 7.1上测试过.到目前为止,我的搜索栏是正常的:

iOS 7.0.3

但现在我有这个问题:

iOS 7.1

出现灰色视图,我不知道如何删除它,因为我的代码中没有此视图.有没有人有同样的问题?这是iOS 7.1的错误?

Max*_*mia 7

我的快速修复使用了我在这里找到的一些代码:https://stackoverflow.com/a/18664917/1153630

然后:

searchBar.backgroundImage = [UIImage imageWithColor:[UIColor clearColor]];
Run Code Online (Sandbox Code Playgroud)

我对它仍然印象不深:当我找到更好的方法时会更新答案.

您可能还想结帐:iOS7.1中的颜色已更改,如何更改searchBar颜色?

  • 简单地使用`[UIImage new]`为我工作 (8认同)