0
我有使用UISearchBar的圖形問題。我可以修復它嗎? iOS 7上的UISearchBar的圖形問題
這裏是我的代碼:
[self.view addSubview:self.resultObject.searchBar];
我有加
self.searchBar.frame = CGRectMake(0, 0, 320, 1);
[self.searchBar sizeToFit];
到viewDidLoad中,但我仍然有同樣的問題。
謝謝很多
您應該使用['topLayoutGuide'](https://developer.apple.com/library/ios/documentation/uikit/reference/UIViewController_Class/Reference/Reference.html#//apple_ref/occ/instp/UIViewController/topLayoutGuide)的'UIViewController'屬性,而不是硬編碼狀態欄高度20點。 – smileyborg
你是對的!我會編輯我的答案。 –