美文网首页
UISearchBar的一些设置

UISearchBar的一些设置

作者: 小黄人写代码 | 来源:发表于2016-06-20 14:56 被阅读125次
// 设置Cancel Button的文字
UISearchBar *searchBar = [[UISearchBar alloc] init];
[searchBar setValue:@"取消" forKey:@"_cancelButtonText"];

// 设置占位符的颜色    
UITextField *textField = [searchBar valueForKey:@"_searchField"];
[textField setValue:[UIColor whiteColor] forKeyPath:@"_placeholderLabel.textColor"];

相关文章

网友评论

      本文标题:UISearchBar的一些设置

      本文链接:https://www.haomeiwen.com/subject/ggpwdttx.html