#importintmain(intargc,constchar*argv[]){@autoreleasepool{//创建字典NSDictionary*dic1=[NSDictionarydictionaryWithObject:@"value"forKey:@"key"];NSLog(@"dic...
分类:
其他好文 时间:
2015-05-04 09:58:06
阅读次数:
101
字典由键-值对组成的数据集合4种创建字典方式1>针对单个键值对 直接赋值 1 NSDictionary *dic = [NSDictionary dictionaryWithObject:@"dajie" forKey:@"name"];//直接创建字典 2 id object = [di...
分类:
其他好文 时间:
2015-05-01 07:06:00
阅读次数:
120
1 //KVC(Key Value Coding) 2 //KVC的作用给某个对象的属性赋值,和点语法中的赋值的作用相同 3 Student *stu=[[Student alloc]init]; 4 [stu setValue:@"xiaowang" forKey:@"name"]; 5 NSL....
分类:
其他好文 时间:
2015-04-29 19:24:46
阅读次数:
138
NSUserDefaults可以存取一些短小的信息。比如存入再读出一个字符串到NSUserDefaults: //写入本地 [[NSUserDefaults standardUserDefaults] setObject:@"hahaha" forKey:@"myKey"]; //获得此key的值 ...
分类:
其他好文 时间:
2015-04-28 17:55:57
阅读次数:
136
self.model=[[DataModel alloc]init];
[self.model setValue:@"searph" forKey:@"stockName"];
[self.model setValue:@"10.0" forKey:@"price"];
[self.model addObserver:self forKeyPath:@"price" ...
分类:
移动开发 时间:
2015-04-20 18:32:29
阅读次数:
152
实现效果:原来效果: 实现对应的思路有:1.首先你要拥有这样的一个控件CSTabBar,继承自tabbar,这样才能做到重构(废话)2.你要在使用CSTabBar使用kvc来实现 [self setValue:newTab forKey:@"tabBar"]; newTab是自己设定的对应的tab....
分类:
其他好文 时间:
2015-04-12 17:26:10
阅读次数:
127
//创建字典NSDictionary*dic1=[NSDictionarydictionaryWithObject:@"value"forKey:@"key"];NSLog(@"dic1:%@",dic1); 对于不可变NSDictionary*dic1 =@{@"value":@"k...
分类:
移动开发 时间:
2015-03-18 15:29:48
阅读次数:
127
NSObjiect *obj;[obj setValue:value forKey:@"cpname"]复制代码的时候都会出现这个异常this class is not key value coding-compliant for the key cpname;原因:obj不包含属性cpname可以...
分类:
移动开发 时间:
2015-03-16 19:07:59
阅读次数:
225
1.使用setValue:ForKey:设置Student对象的name[student setValue:@"one" forKey:@"name"]; 使用setValue:ForKey:设置Student对象的age[student setValue:[NSNumber numberWith....
分类:
其他好文 时间:
2015-03-16 15:50:01
阅读次数:
126
3、NSDictionary *dict = [NSDictionary dictionaryWithObject:@"a value" forKey:@"aKey"];NSLog(@"%@",[dict objectForKey:@"aKey"]);[dict release];控制台中打印的最后...
分类:
其他好文 时间:
2015-03-14 16:52:17
阅读次数:
1684