以下哪个命名更“正确”?
- (void) forPrimaryKeySetValue:(id)value
或者
- (void) setValueForPrimaryKey:(id)value
它的作用:它是一个 NSManagedObject 类别方法,它在实体的 userInfo 中搜索键 primaryKey,如果它是 pressend,则将对应(primaryKey)属性的值设置为 value
以下哪个命名更“正确”?
- (void) forPrimaryKeySetValue:(id)value
或者
- (void) setValueForPrimaryKey:(id)value
它的作用:它是一个 NSManagedObject 类别方法,它在实体的 userInfo 中搜索键 primaryKey,如果它是 pressend,则将对应(primaryKey)属性的值设置为 value