Fyns

Results 7 comments of Fyns

You've done everything right. wait u team solution supported many devices

更改色值应该就可以看出具体的问题了。 搜索框的UI样式,跟之前的发生了变化,圆角的弧度,光标的颜色,字体的大小。 ` #define HexRGB(rgbValue) [UIColor colorWithRed:((float)((rgbValue & 0xFF0000) >> 16))/255.0 green:((float)((rgbValue & 0xFF00) >> 8))/255.0 blue:((float)(rgbValue & 0xFF))/255.0 alpha:1.0] ` 这个是设置的颜色 ` searchViewController.searchBarBackgroundColor = HexRGB(0x000000); searchViewController.searchSuggestionView.backgroundColor = HexRGB(0x2D2D2D); searchViewController.view.backgroundColor...

自己回复吧,在iOS13里边UISearchBar自带searchTextField,所以在PYVc的内部里边需要增加iOS13的兼容,如果不想调整的话,可以在外边进行样式的设置。 例如: ``` PYSearchViewController *searchViewController = [PYSearchViewController searchViewControllerWithHotSearches:strArr searchBarPlaceholder:@"搜索内容" didSearchBlock:^(PYSearchViewController *searchViewController, UISearchBar *searchBar, NSString *searchText) { }]; // 3. Set style for popular search and search history searchViewController.hotSearchStyle = PYHotSearchStyleBorderTag;...

最重要的是编译问题  --  Fyns Sent with Airmail 在 December 23, 2015 6:11:38 PM, Tiger_WF ([email protected]) 写到: 看提问题的貌似都是国人 我就直接用汉语回答了啊。。去下载所缺失的静态库 和 头文件 添加到项目中(谷歌下,会让你下载2个文件夹:一个是include 里面全是头文件 ,一个是 lib 里面全是静态库),然后选择target 找到Header Search Paths (加头文件路径)和 Library Search...

thank u 发自我的 iPhone > 在 2015年1月23日,上午1:55,Supagusti [email protected] 写道: > > Hi, > > Yes it does build the same files, but for different arch: > > armv7 > armv7s...

i resolved 发自我的 iPhone > 在 2015年3月5日,下午8:22,noyau09 [email protected] 写道: > > Hi, > after "rake", I got five .a lib file as below: > FileUtils.copy Pathname.new('libs/FFmpeg/libavcodec.a'), dest > FileUtils.copy Pathname.new('libs/FFmpeg/libavformat.a'),...