2013-12-23 87 views
0

我想添加UISearchbar與我的UIView兩個勺子按鈕。我不想要導航或表格視圖。 當用戶從工作表中打開模型查看頁面時,會出現搜索選項並進行休息。當用戶點擊搜索按鈕時,按鈕變得可見。 我試圖做,但我沒有得到慾望的結果。 Image after Search添加UISearchBar與範圍按鈕作爲UIView的子視圖

Image after Cancel

如何刪除範圍按鈕的背景,我已刪除的UISearchBar,類似的方式,我不想白色背景的按鈕。可能嗎。 showsScopeBar我使FALSE仍然可以看到背景。

回答

1

要刪除範圍按鈕的背景圖像只是嘗試:

Class segmentedControlBackgroundView = NSClassFromString(@"_UISegmentedControlBackgroundView"); 
    for(UIView *view in self.searchBar.subviews) { 
     if([view isKindOfClass:[UISegmentedControl class]]){ 
      for(UIView *subview in view.subviews) { 
       if ([subview isKindOfClass:segmentedControlBackgroundView]) { 
        subview.hidden = YES; 
       } 
      } 
     } 
    } 
相關問題