
IOS 问题小记
後悔無期
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
UIBarButtonItem 边缘问题小记
IOS: UIBarButtonItem * searchBtnItem = [[UIBarButtonItem alloc]initWithCustomView:_searchButton]; UIBarButtonItem *negativeSpacer = [[UIBarButtonItem alloc]原创 2014-11-14 10:17:14 · 2671 阅读 · 0 评论 -
IOS alpha导致subview也透明了(opacity)
当要 xib中的background color 选others 里面有个opacity可以解决这个问题原创 2014-11-17 10:48:03 · 4647 阅读 · 0 评论 -
xib中autoresizingMask属性失效问题
在ios的开发中,遇到UIView的排版问题,自然少不了layoutSubviews 这个函数与autoresizingMask这个属性。 在superview的autoresizesSubviews为Yes的时候,会根据subview的autoresizingMask类型进行自动排版,autoresizingMask可选的属性有 UIViewAutoresizingNone原创 2014-12-12 21:30:31 · 3435 阅读 · 0 评论 -
xcode编译出错问题汇总
code signing is required for product type 'Application' in SDK 'iOS 在真机测试的时候往往会突然出现这样一个错误,code signing is required for product type 'Application' in SDK 'iOS 7.0' ,就是说代码签名证书不对劲。 解决方案, 1.选原创 2014-12-05 14:20:22 · 949 阅读 · 0 评论 -
ios7 跳转到appstore评分
NSString *str = [NSString stringWithFormat:@"itms-apps://ax.itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?type=Purple+Software&id=xxxxxx" ]; if( ([[[UIDevice currentDevice] system原创 2015-01-14 10:24:10 · 6430 阅读 · 1 评论 -
UIWebView使用小记
dataDetectorTypes属性(需要检测的数据类型),可以使得webview文本中 电话,网址,地址等文本加上标识 如果上述属性已经设置了,还无法使用,可能是在html文本中加了屏蔽的属性 format-detection翻译成中文的意思是“格式检测”,顾名思义,它是用来检测html里的一些格式的,那关于meta的format-detection属性主要是有以下几个设置:原创 2015-01-21 00:16:05 · 1436 阅读 · 0 评论 -
uisearchDisplayController放在tableview里下拉刷新状态出现遮挡
代码如下 - (void)viewDidLoad { [super viewDidLoad]; UISearchBar * searchBar =[[UISearchBar alloc]initWithFrame:CGRectMake(0, 0, 320, 44)]; self.tableView.tableHeaderView=searchBar; self原创 2015-02-12 17:06:52 · 2408 阅读 · 0 评论 -
关于IOS mailcore2 github最新版编译失败问题小计
1.ld: library not found for -luchardet-ios 删除other linker flags 中的-luchardet-ios 2.Undefined symbols for architecture arm64: "_res_9_ns_initparse", referenced from: mailcore::MXRecordResolverOpera原创 2015-03-27 13:01:16 · 3107 阅读 · 1 评论