关于iOS修改SearchBar上Cancel文字颜色

来源:互联网 发布:淘宝网有电脑客户端吗 编辑:程序博客网 时间:2024/05/21 10:37

//显示Cancel按钮

_searchBar.showsCancelButton = YES;

//设置Cancel按钮颜色

[[UIBarButtonItem appearanceWhenContainedIn:[UISearchBar class], nil] setTitleTextAttributes:[NSDictionary dictionaryWithObjectsAndKeys:[UIColor whiteColor],NSForegroundColorAttributeName,[NSValue valueWithUIOffset:UIOffsetMake(0, 1)],NSForegroundColorAttributeName,nil] forState:UIControlStateNormal];

原创粉丝点击