NSDate *date = [NSDate date]; 方法一 NSTimeZone *zone = [NSTimeZone systemTimeZone]; NSInteger interval = [zone secondsFromGMTForDate: date]; NSDate...
分类:
其他好文 时间:
2015-10-31 12:43:33
阅读次数:
161
iOS开发多线程篇—NSOperation基本操作一、并发数(1)并发数:同时执?行的任务数.比如,同时开3个线程执行3个任务,并发数就是3(2)最大并发数:同一时间最多只能执行的任务的个数。(3)最?大并发数的相关?方法- (NSInteger)maxConcurrentOperationCoun...
分类:
移动开发 时间:
2015-10-27 19:54:41
阅读次数:
263
-?(UIImage?*)stretchableImageWithLeft
CapWidth:(NSInteger)leftCapWidth?topCapHeight:(NSInteger)topCapHeight 这个函数是UIImage的一个实例函数,它的功能是创建一个内容可拉伸,而边角不拉伸的图片,需要...
分类:
其他好文 时间:
2015-10-26 22:46:32
阅读次数:
343
#pragma mark ---- TableView开始//////////////////////////////////////////// Customize the number of sections in the table view.- (NSInteger)numberOfSect...
分类:
其他好文 时间:
2015-10-23 10:18:45
阅读次数:
165
- (void)layoutSubviews{ [super layoutSubviews]; NSUInteger count = self.subviews.count; NSInteger maxC = 3; CGFloat childViewWH = (SCREENW - 2 ...
分类:
其他好文 时间:
2015-10-19 23:58:47
阅读次数:
405
//1.设定滚定条的样式typedefNS_ENUM(NSInteger, UIScrollViewIndicatorStyle) { UIScrollViewIndicatorStyleDefault, // black with white border. good against any...
分类:
其他好文 时间:
2015-10-18 15:25:52
阅读次数:
193
Contact.h#import @interface Contact : NSObject{ NSString *_name; NSString *_gender; NSInteger _age; NSString *_address; NSString *_phoneNumber; ...
分类:
其他好文 时间:
2015-10-16 20:43:58
阅读次数:
166
/*------------------------以下为UITableViewDataSource代理方法------------------------*///加载loadView,之后先返回section,再返回row,在设置row高度,最后绘制cell-(NSInteger)tableVie...
分类:
其他好文 时间:
2015-10-16 15:06:46
阅读次数:
118
Objective-C入门教程10:数字类型(NSInteger,NSUInteger,NSNumber) 柳志超博客???Program???Objective-C???Objective-C入门教程10:数字类型(NSInteger,NSUInteger,NSNumber) posted in?Objective-C...
分类:
其他好文 时间:
2015-10-15 19:05:43
阅读次数:
187
//可直接复制 测试#import "ViewController.h"@interface ViewController (){ NSInteger num;}@end@implementation ViewController- (void)viewDidLoad { [super view.....
分类:
其他好文 时间:
2015-10-13 17:10:00
阅读次数:
1148