我加入在右側搜索欄按鈕這段代碼setRightView爲不的UISearchBar iOS中7
[searchtextfield setRightView:customButton];
[searchtextfield setRightViewMode:UITextFieldViewModeAlways];
它的工作原理高達iOS 6的工作,但在iOS的7我無法看到它。任何想法如何完成它在iOS中7
我加入在右側搜索欄按鈕這段代碼setRightView爲不的UISearchBar iOS中7
[searchtextfield setRightView:customButton];
[searchtextfield setRightViewMode:UITextFieldViewModeAlways];
它的工作原理高達iOS 6的工作,但在iOS的7我無法看到它。任何想法如何完成它在iOS中7
如果你有那麼白色背景可能是它的,你不能看到搜索欄的問題,我面臨着同樣的問題,而是設法通過設置表上添加該代碼來解決這個查看背景。
UIView *backgroundView = [[UIView alloc] initWithFrame:self.tableView.bounds];
backgroundView.backgroundColor = [UIColor clearColor];
self.tableView.backgroundView = backgroundView;
希望它能幫上忙。謝謝。
我可以看到搜索欄,我看不到我設置的按鈕,因爲它是正確的。 –
啊,我想你會看到這個鏈接「http://stackoverflow.com/questions/3052343/remove-clear-button-grey-x-to-the-right-of-uisearchbar-when-cancel-button-tapp 「,希望它會有所幫助。如果你喜歡,然後提出我的觀點。 – Aleem
嘗試設置色差條的顏色 – Kalpesh
與色調無關。 –