摘要: 如果要修改对象的属性值1.一般情况下是直接利用对象属性的set方法来修改: Student *stu = [[Student alloc] init]; // set方法的两种书写格式 [stu setAge:10]; stu.age = 10;2.但是如果不知道对象类型呢?那么就可以运用KVC键值编码(Key Value Coding) 间接的修改对象属性KVC实现方式是:使用字符串来描述对象需要修改的属性。KVC的基本调用包括:valueForKey:和 setValue:ForKey: 是以字符串的方式向对象发送消息KVC一般用法:/***************... 阅读全文
posted @ 2014-04-06 15:25 谦默 阅读(1336) 评论(0) 推荐(2) 编辑