摘要: CocoaPods 阅读全文
posted @ 2014-08-06 12:10 zander 阅读(3777) 评论(1) 推荐(2) 编辑
摘要: NSDictionary 的有序性: (by the key in some rule)NSDictionary*myDictionary =[NSDictionary dictionaryWithObjectsAndKeys:@"o1",@"k1",@"o6",@"k4",@"o2",@"k2",@"o3",@"k3",@"o5",@"k5", nil];NSInteger count =[my 阅读全文
posted @ 2014-04-10 10:34 zander 阅读(1870) 评论(0) 推荐(0) 编辑
摘要: /* *设置虚线 *param context CGContext *param context CGContext *param lineDashLengths 如: const CGFloat lineDashLengths[2] = {2., 50. }; 2 是没接虚线的长度2 和间隔50 *returns */void setXuXian(CGContextRef context,const CGFloat lineDashLengths[],CGFloat width){ CGContextSetLineWidth(context, width); CGContex... 阅读全文
posted @ 2013-11-20 17:05 zander 阅读(296) 评论(0) 推荐(0) 编辑
摘要: NSUTF8StringEncoding 3个字节(字符)一个中文字符一个字节一个英文字符 阅读全文
posted @ 2013-10-25 14:34 zander 阅读(392) 评论(0) 推荐(0) 编辑
摘要: //设置线的宽度CGContextSetLineWidth(ctx, 12);//设置线的连接处 (拐点)CGContextSetLineJoin(ctx,kCGLineJoinRound)/* Line join styles. */ enum CGLineJoin { kCGLineJoinMiter, kCGLineJoinRound,//圆滑的 kCGLineJoinBevel }; //设置线的端点CGContextSetLineCap(ctx, kCGLineCapButt); 设置 线的端点样式enum CGLineCap { kCGLineCapButt,... 阅读全文
posted @ 2013-07-25 17:18 zander 阅读(420) 评论(0) 推荐(0) 编辑
摘要: 父视图 和子视图的关联只有当父视图 userInteractionEnabled=YES; 是其子视图才可响应userInteractionEnabled=NO代表不接受响应UIView的默认值时YES UIview的子类 的默认值要根据具体的api。 阅读全文
posted @ 2013-07-23 17:00 zander 阅读(434) 评论(0) 推荐(0) 编辑
摘要: NSMutableArray * array = [NSMutableArrayarrayWithObjects:@"ad",@"az",@"ac",@"ab",@"aa", nil]; DLog("ar :: %@",array); [array sortUsingComparator:^NSComparisonResult(id obj1, id obj2) { return [obj1 localizedStandardCompare:obj2]; }]; DLog(& 阅读全文
posted @ 2013-06-16 17:44 zander 阅读(3284) 评论(0) 推荐(0) 编辑
摘要: 我有点想吐槽用了大半年的coredata 今天才知道 core data 真正意义上的 数据同步是怎么一回事 。。。。。。。。还是买本书好好看看 。。。最便宜的 200多 、、、、、、神呀 阅读全文
posted @ 2013-04-19 16:22 zander 阅读(278) 评论(0) 推荐(0) 编辑
摘要: ios adi ADBannerView 无法修改 宽度 阅读全文
posted @ 2013-03-25 15:52 zander 阅读(181) 评论(0) 推荐(0) 编辑
摘要: 或者在有statusbar情况下UIInterfaceOrientationIsLandscape([[UIApplication sharedApplication] statusBarOrientation])UIInterfaceOrientationIsPortrait([[UIApplication sharedApplication] statusBarOrientation]) 阅读全文
posted @ 2013-03-12 14:03 zander 阅读(586) 评论(0) 推荐(0) 编辑