1, 今天感冒呀, 码到
感觉 右眼睛 肿了。
2, 写 《专业技能》
“id” 用 String , 风格不搭呀。 之前 还以为 Ghost 错了。
然后, “plist” 文件, 我新建 有些失误,两行属性 忘了改。
Debug,找了三个小时。
3,写“特长”“自我评价”
Post + Patch,
id 是 保存 生成的, 不是根据 用户 自动生成的。
有 id ,就有 Special / selfEvaluation, 因为不允许删除。
第一次 POST, 然后 PATCH.
4 ,Model 控制 CellHeight
@interface SpecialityModel : JSONModel
@property (nonatomic, assign) NSInteger Id;
@property (nonatomic, strong) NSString<Optional> * Speciality;
@property (nonatomic, strong) NSNumber<Optional> * specialiHeight;( 对的)
@end
@interface EvaluationModel : JSONModel
@property (nonatomic, assign) NSInteger Id;
@property (nonatomic, strong) NSString<Optional> * SelfEvaluation;
@property (nonatomic, assign) NSInteger evaluatHeight;( 错的)
@end
用Model 控制 CellHeight,
其中用到了 JSONModel
新增 CellHeight 属性,若是 NSInteger, 模型都解析 不出来。
新增 CellHeight 属性,若是 NSNumber, OK。