Q
自定義搜索欄
0
A
回答
2
self.searchBar
是IBOutlet
。您也可以動態創建它。
self.searchBar.layer.borderWidth = 2.0;
self.searchBar.layer.borderColor = [UIColor brownColor].CGColor;
self.searchBar.layer.cornerRadius = 15.0;
self.searchBar.barTintColor = [UIColor colorWithRed:255/255.0 green:246/255.0 blue:241/255.0 alpha:1.0];
self.searchBar.backgroundColor = [UIColor clearColor];
UITextField *textField = [self.searchBar valueForKey:@"_searchField"];
textField.textColor = [UIColor brownColor];
textField.placeholder = @"Search";
textField.leftViewMode = UITextFieldViewModeNever; //hiding left view
textField.backgroundColor = [UIColor colorWithRed:255/255.0 green:246/255.0 blue:241/255.0 alpha:1.0];
textField.font = [UIFont systemFontOfSize:18.0];
[textField setValue:[UIColor brownColor] forKeyPath:@"_placeholderLabel.textColor"];
UIImageView *imgview = [[UIImageView alloc] initWithFrame:CGRectMake(0, 0, 20, 30)];
imgview.image = [UIImage imageNamed:@"searchIcon.png"]; //you need to set search icon for textfield's righ view
textField.rightView = imgview;
textField.rightViewMode = UITextFieldViewModeAlways;
輸出:
0
你可以用圖像來改變UISearchBar
appearance-
[[UISearchBar appearance] setBackgroundColor:[UIColor clearColor]];
[[UISearchBar appearance] setBackgroundImage:[UIImage imageNamed:@"searchBG.png"]];
[[UISearchBar appearance] setSearchFieldBackgroundImage:[UIImage imageNamed:@"search.png"] forState:UIControlStateNormal];
0
你可以使用一些定製的解決方案(這是定製更好) 例如SSSearchBar或試圖找到一些類似
相關問題
- 1. 自定義搜索欄searchIcon
- 2. Android自定義搜索欄
- 3. NoSuchMethodException自定義搜索欄
- 4. 如何顯示自定義搜索欄?
- 5. UISplitView Ipad自定義搜索欄
- 6. 創建自定義搜索欄
- 7. 創建自定義搜索欄
- 8. 帶邊框的自定義搜索欄
- 9. iOS中的自定義搜索欄
- 10. 使用搜索欄自定義UITableView
- 11. 自定義搜索欄在Android的
- 12. 指標設計自定義搜索欄
- 13. 自定義搜索欄View實現
- 14. 我的自定義主頁上的自定義搜索欄
- 15. 在ActionBarSherlock搜索欄中製作自定義搜索建議
- 16. 帶自定義搜索框的Google自定義搜索?
- 17. 自定義谷歌自定義搜索
- 18. 導航欄自定義高度與右側的搜索欄
- 19. 如何使用自己的CSS自定義Google自定義搜索欄API
- 20. Bootstrap自定義搜索Google搜索
- 21. 自定義搜索實施
- 22. 自定義的Plone搜索
- 23. 搜索自定義tableviewCell
- 24. 谷歌自定義搜索
- 25. 自定義搜索結果
- 26. CakePHP的自定義搜索
- 27. 搜索自定義對象
- 28. WordPress的自定義搜索
- 29. android自定義搜索
- 30. Google自定義搜索
什麼是你的搜索欄樣式使用理查茲後碼? –
風格默認@ Dev.RK – iDeveloper