设置 UISearchBar 输入字体颜色 和 默认字体颜色

来源:互联网 发布:淘宝换主图会影响排名 编辑:程序博客网 时间:2024/04/28 07:22

此博文转载自 http://blog.csdn.net/jianjianyuer/article/details/8514328

UISearchBar *searchBar = [[UISearchBar alloc] initWithFrame:CGRectMake(0, 0, 210, 44)];// Get the instance of the UITextField of the search barUITextField *searchField = [searchBar valueForKey:@"_searchField"];    // Change search bar text colorsearchField.textColor = [UIColor blackColor];    // Change the search bar placeholder text color[searchField setValue:[UIColor blackColor] forKeyPath:@"_placeholderLabel.textColor"];



0 0