2013-10-04 53 views
0

我有使用UISearchBar的圖形問題。我可以修復它嗎? enter image description hereiOS 7上的UISearchBar的圖形問題

這裏是我的代碼:

[self.view addSubview:self.resultObject.searchBar]; 

我有加

self.searchBar.frame = CGRectMake(0, 0, 320, 1); 
[self.searchBar sizeToFit]; 

到viewDidLoad中,但我仍然有同樣的問題。

謝謝很多

回答

0

你應該把你的搜索欄(0, viewController.topLayoutGuide.length);你在(0,0)添加它。在iOS7中,狀態欄默認爲視圖。

+1

您應該使用['topLayoutGuide'](https://developer.apple.com/library/ios/documentation/uikit/reference/UIViewController_Class/Reference/Reference.html#//apple_ref/occ/instp/UIViewController/topLayoutGuide)的'UIViewController'屬性,而不是硬編碼狀態欄高度20點。 – smileyborg

+0

你是對的!我會編輯我的答案。 –