上一页 1 2 3 4 5 6 7 8 9 ··· 12 下一页
摘要: SDWebImage中的一些参数:*SDWebImageRetryFailed = 1<< 0, 默认选项,失败后重试*SDWebImageLowPriority = 1<< 1, 使用低优先级*SDWebImageCacheMemoryOnly = 1<< 2, 仅仅使用内存缓存*SDWebIm... 阅读全文
posted @ 2014-11-27 22:50 銱ル╬鎯噹 阅读(200) 评论(0) 推荐(0) 编辑
摘要: //// ZBMainViewController.m// MBProgressHUDDemo//// Created by 张先森 on 14/11/27.// Copyright (c) 2014年 zhibin. All rights reserved.//#import "ZBMainVie... 阅读全文
posted @ 2014-11-27 22:26 銱ル╬鎯噹 阅读(185) 评论(0) 推荐(0) 编辑
摘要: //// ZBMainViewController.m// FMDBDemo//// Created by 张先森 on 14/11/27.// Copyright (c) 2014年 zhibin. All rights reserved.//#import "ZBMainViewControll... 阅读全文
posted @ 2014-11-27 21:39 銱ル╬鎯噹 阅读(219) 评论(0) 推荐(0) 编辑
摘要: 接收 [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(receive:) name:@"zhibintest" object:nil]; -(void)receive:(NSNotifica... 阅读全文
posted @ 2014-11-27 20:09 銱ル╬鎯噹 阅读(103) 评论(0) 推荐(0) 编辑
摘要: 在TARGETS-Bulid Phares-Compile Sources中找到非ARC的文件,双击,在弹出的框中添加1-fno-objc-arc如图:即可PS:如果项目建立时未使用ARC,想将其改为ARC,可以在building setting中修改在Building Setting中搜索auto... 阅读全文
posted @ 2014-11-27 15:35 銱ル╬鎯噹 阅读(97) 评论(0) 推荐(0) 编辑
摘要: KVC,即:Key-value coding,它是一种使用字符串标识符,间接访问对象属性的机制,它是很多技术的基础。主要的方法就两个,setValue:forKey,valueForKey在Programming Guide中说,使用KVC可以简化代码,但事实上使用起来,还是要看具体情况。代码实例:... 阅读全文
posted @ 2014-11-26 11:57 銱ル╬鎯噹 阅读(161) 评论(0) 推荐(0) 编辑
摘要: 1 //NSData转换为UIImage2 NSData *imageData = [NSData dataWithContentsOfFile: imagePath];3 UIImage *image = [UIImage imageWithData: imageData];4 5 //UIIma... 阅读全文
posted @ 2014-11-26 11:52 銱ル╬鎯噹 阅读(125) 评论(0) 推荐(0) 编辑
摘要: #import "ZBAccountInfo.h"@interface ZBAccountInfo()@endstatic ZBAccountInfo *sharedObj = nil;@implementation ZBAccountInfo+(ZBAccountInfo *)sharedInst... 阅读全文
posted @ 2014-11-25 21:47 銱ル╬鎯噹 阅读(99) 评论(0) 推荐(0) 编辑
摘要: #import @class ZBTabBar;@protocol ZBTabBarDelegate -(void)tabBar:(ZBTabBar *)tabBar didSelectButtonFrom:(int)from to:(int)to;@end@interface ZBTabBar :... 阅读全文
posted @ 2014-11-25 20:54 銱ル╬鎯噹 阅读(103) 评论(0) 推荐(0) 编辑
摘要: //添加所有的手势-(void)addGestureRecognizerToView:(UIView*)view{//旋转手势UIRotationGestureRecognizer*rotationGestureRecognizer=[[UIRotationGestureRecognizerallo... 阅读全文
posted @ 2014-11-25 14:42 銱ル╬鎯噹 阅读(137) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 12 下一页