mamba

Results 105 comments of mamba

可以配上截图 ! @ZhaoYingWei

@HTOne 这是你使用问题 UINavigationController 不能modal出一个控制器

@Jayxiang 提供了`seachHistoryTags` 存储所有历史标签(`UILabel`)数组,遍历设置`label.textColor`即可 ```OBJC /** The tags of search history */ @property (nonatomic, copy) NSArray *searchHistoryTags; ```

@hjun1314 `PYSearchViewController`这个控制器是搜索控制器,所以你必须跳转到该控制器,并且该控制器已经尽可能地提供接口以满足需求,如果需求差异太大,建议`fork`,然后根据需求更改源码,或者自己手动实现需求!

@JiaHaoGong 1. 继承`PYSearchViewController` 2. 重写`- (void)viewDidLayoutSubviews`方法

目前没有提供swift版本 由于swift不是很熟悉,建议先使用桥接文件,swift项目也是可以使用的。

@Micheal-Long 你是否设置了navigationBar.tintColor 为白色了?

@Micheal-Long 是的 这里你可以设置searchBar.tintColor属性来设置你的光标颜色

@Huang-Libo 从哪得知此协议?我没有提供此协议啊,您先下载最新版本或者pod update 最新版本

@Huang-Libo 实现PYSearchViewController文本框文本变化代理方法 ```objc /** 搜索框文本变化时,显示的搜索建议通过searchViewController的searchSuggestions赋值即可 */ - (void)searchViewController:(PYSearchViewController *)searchViewController searchTextDidChange:(UISearchBar *)seachBar searchText:(NSString *)searchText; ```