在使用NSMutableDictionary 的时候经常会使用setValue forKey 与 setObject forKey,他们经常是可以交互使用的。 1.setValue forKey的定义 @interface NSMutableDictionary(NSKeyValueCoding) ...
分类:
其他好文 时间:
2016-05-21 21:54:45
阅读次数:
173
1, setObject:forkey:中value是不能够为nil的,不然会报错。 setValue:forKey:中value能够为nil,但是当value为nil的时候,会自动调用removeObject:forKey方法 2, setValue:forKey:中key的参数只能够是NSStr ...
分类:
其他好文 时间:
2016-05-13 11:12:07
阅读次数:
136
在使用NSMutableDictionary的时候经常会使用setValue forKey与setObject forKey,他们经常是可以交互使用的,代码中经常每一种的使用都有。 1,先看看setValue: forKey:的定义 @interface NSMutableDictionary(NS ...
分类:
其他好文 时间:
2016-05-13 08:31:04
阅读次数:
125
在使用NSMutableDictionary的时候经常会使用setValue forKey与setObject forKey,他们经常是可以交互使用的,代码中经常每一种的使用都有。 1,先看看setValue: forKey:的定义 @interface NSMutableDictionary(NS ...
分类:
移动开发 时间:
2016-05-13 07:56:50
阅读次数:
168
基本的KVC由NSKeyValueCoding协议提供支持
setValue:属性值 forKey:属性名
valueForKey:属性名
#import
@interface User:NSObject
@property (nonatomic,copy) NSString* name;
@property (nonatomic,copy)NSString* pass;
@prop...
分类:
其他好文 时间:
2016-05-12 16:07:00
阅读次数:
120
在使用NSMutableDictionary的时候经常会使用setValue forKey与setObject forKey,他们经常是可以交互使用的,代码中经常每一种的使用都有。 1,先看看setValue: forKey:的定义 @interface NSMutableDictionary(NS ...
分类:
其他好文 时间:
2016-05-12 01:29:23
阅读次数:
96
*** Terminating app due to uncaught exception 'NSUnknownKeyException', reason: '[<UIViewController 0x12b24d950> setValue:forUndefinedKey:]: this class ...
分类:
其他好文 时间:
2016-05-11 11:04:40
阅读次数:
126
KVC(Key-Value Coding)键值编码 KVO(Key-Value Observing)键值观察 这两个方法都是runtime方法 运行时方法 KVC: KVCClass *kvc = [KVCClass new]; //通过setValue: forKey:来动态设置属性的值 [kvc ...
分类:
其他好文 时间:
2016-05-06 20:21:39
阅读次数:
276
转载自http://www.tuicool.com/articles/2aYfy2 Key-value coding,它是一种使用字符串标识符,间接访问对象属性的机制,而不是直接调用getter 和 setter方法。通常我们使用valueForKey 来替代getter 方法,setValue:f ...
分类:
其他好文 时间:
2016-05-04 18:52:38
阅读次数:
139
ERP的下拉动态改变值 var standlist=[{id:1,text:'中国'},{id:2,text:'韩国'}]editor[3].target.combobox('loadData', standlist); editor[3].target.combobox('setValue', r ...
分类:
其他好文 时间:
2016-04-27 09:29:48
阅读次数:
161