效果图首先,使用for循环将视图在模拟器上创建出来 for(NSInteger i = 0; i < 6; i++) {for (NSInteger j = 0; j < 10; j++) {//创建和灯泡视图等同数量的button, 来控制灯泡的开关UIButton *lightButton = ...
分类:
其他好文 时间:
2015-06-10 13:45:22
阅读次数:
88
两个tableview的联动,滑动左侧tableview,右侧tableview跟着滑动
其实实现起来比较简单,只是需要搞清楚他们之间的区别和联系,还有就是调用一个
- (void)tableView:(UITableView *)tableView willDisplayHeaderView:(UIView
*)view forSection:(NSInteger)section
这个...
分类:
移动开发 时间:
2015-06-10 10:24:25
阅读次数:
137
NSUserDefaults是一个单例,整个程序中只有一个实例化对象。NSUserDefaults支持的数据类型有:NSNumber(NSInteger、float、double),NSString,NSDate,NSArray,NSDictionary,BOOL。不支持自定义的Model类型。如保...
分类:
其他好文 时间:
2015-06-09 19:23:12
阅读次数:
161
在运行一个界面的时候,就是一直libc++abi.dylib: terminate_handler unexpectedly threw an exception,也没有指明是哪里错误,后来经检查发现是数组越界
- (CellInfo_t *)getCellInfo:(NSIndexPath *)indexPath{
NSInteger row=[self getCellInfoFro...
分类:
编程语言 时间:
2015-06-09 11:49:48
阅读次数:
187
1 //声明一个整数 2 NSInteger a=9; 3 //创建常见的数据类型的对象 4 NSNumber *intNumber=[[NSNumber alloc] initWithInt:5]; 5 NSNumber *floatNumber=[[NSNumb...
分类:
其他好文 时间:
2015-06-08 23:06:24
阅读次数:
155
例1、 从服务器段获取到的字符串转化为时间如:转化1416882712000//网络请求获取的数据NSString *time =1416882712000;//服务器上的时间字符串NSInteger num = [time integerValue]/1000;(重点) NSDateFormatt...
分类:
移动开发 时间:
2015-06-08 19:32:17
阅读次数:
145
NSInteger转化NSString类型:[NSStringstringWithFormat:@"%d",NSInteger];NSString转化NSInteger类型:NSInteger=[NSStringintValue];NSString 转换成NSData 对象 NSData* xmlD...
分类:
其他好文 时间:
2015-06-06 16:31:37
阅读次数:
94
NSUserDefault介绍
1 是系统提供的自定义的类,可以随时在需要使用的地方声明对象,并随时需要的时候取出对象
2 支持的对象类型:NSString, NSNumber, NSData, NSArray, NSDictionary, BOOL, NSInteger, NSFloat;
3 不支持自定义对象类型...
分类:
移动开发 时间:
2015-06-06 09:13:41
阅读次数:
446
@property(nonatomic) NSInteger applicationIconBadgeNumber; // set to 0 to hide. default is 0. In iOS 8.0 and later, your application must register for...
分类:
移动开发 时间:
2015-06-05 15:13:36
阅读次数:
157
NSOperation基本操作一、并发数(1)并发数:同时执?行的任务数.比如,同时开3个线程执行3个任务,并发数就是3(2)最大并发数:同一时间最多只能执行的任务的个数。(3)最?大并发数的相关?方法- (NSInteger)maxConcurrentOperationCount;- (void)...
分类:
移动开发 时间:
2015-06-05 00:12:05
阅读次数:
246