Xcode 7.0 Could not find developer disk image

摘要: 在使用Xcode 7的真机运行的时候, 出现Could not find developer disk image.解决方法:先关闭Xcode.再从Xcode 6.4中,拷贝8.4 (12H141)文件夹到Xcode 7的对应目录下.Xcode 6.4路径为/Applications/Xcode.a... 阅读全文
posted @ 2015-09-22 09:43 bibibi_liuliu 阅读(513) 评论(0) 推荐(0) 编辑

iOS UILabel两端对齐的实现(可包括中英文/数字)

摘要: - (void)conversionCharacterInterval:(NSInteger)maxInteger current:(NSString *)currentString withLabel:(UILabel *)label{ CGRect rect = [[currentStri... 阅读全文
posted @ 2015-08-29 17:16 bibibi_liuliu 阅读(2626) 评论(0) 推荐(1) 编辑

FormSheet式模态视图,点击模态视图外隐藏模态视图的方法

摘要: - (void)viewDidAppear:(BOOL)animated{ [super viewDidAppear:animated]; _tapRecognizer = [[UITapGestureRecognizer alloc] initWithTarget:selfaction... 阅读全文
posted @ 2015-07-16 12:44 bibibi_liuliu 阅读(241) 评论(0) 推荐(0) 编辑

iOS笔记之网络

摘要: 用POST方式上传数据时,数组怎么处理?NSError *error;NSData *jsonData = [NSJSONSerialization dataWithJSONObject:data options:NSJSONWritingPrettyPrinted error:&error];//... 阅读全文
posted @ 2015-06-16 14:22 bibibi_liuliu 阅读(188) 评论(0) 推荐(0) 编辑

iOS笔记之文件读写

摘要: 最近做的项目中要存储一组图片数据,图片带有name,date等属性,处理办法是讲image图片直接存在沙盒documents文件中,再使用plist文件存储图片属性和image路径。存入图片:- (void)savePhotos:(NSArray *)photos { NSArray ... 阅读全文
posted @ 2015-06-08 16:58 bibibi_liuliu 阅读(152) 评论(0) 推荐(0) 编辑

iOS 地图 通过经纬度计算两点间距离

摘要: - (double)calculateStart:(CLLocationCoordinate2D)start end:(CLLocationCoordinate2D)end { double meter = 0; double startLongitude = start... 阅读全文
posted @ 2015-06-04 11:44 bibibi_liuliu 阅读(648) 评论(0) 推荐(0) 编辑

Toncat-OpenSSL双向认证配置(iOS)

摘要: OpenSSL生成证书要生成证书的目录下建立几个文件和文件夹,有./demoCA/./demoCA/newcerts/./demoCA/private/./demoCA/index.txt (空文件,生成证书时会将数据记录写入)./demoCA/serial (在serial文件中写入第一个序列号“... 阅读全文
posted @ 2015-05-29 13:03 bibibi_liuliu 阅读(897) 评论(0) 推荐(0) 编辑

iOS笔记之线程

摘要: dispatch_afterdispatch_after能让我们添加进队列的任务延时执行,比如想让一个Block在10秒后执行:var time = dispatch_time(DISPATCH_TIME_NOW, (Int64)(10 * NSEC_PER_SEC))dispatch_after(... 阅读全文
posted @ 2015-05-19 17:50 bibibi_liuliu 阅读(174) 评论(0) 推荐(0) 编辑

iOS笔记之ScrollView

摘要: ScrollView三个基本的要理解的属性;contentSizeThe size of the content view.所以很好理解,contentSize也就是scrollView可滚动的区域.contentOffsetThe point at which the origin of the ... 阅读全文
posted @ 2015-05-12 17:44 bibibi_liuliu 阅读(270) 评论(0) 推荐(0) 编辑

iOS笔记之AutoresizingMask

摘要: 在 UIView 中有一个autoresizingMask的属性,它对应的是一个枚举的值(如下),属性的意思就是自动调整子控件与父控件中间的位置,宽高。enum { UIViewAutoresizingNone = 0, UIViewAutoresizingFlexibleLeftMargin = ... 阅读全文
posted @ 2015-05-12 16:30 bibibi_liuliu 阅读(105) 评论(0) 推荐(0) 编辑