learning ios 7

  • 自定义cell
    1.新建cell UITableViewCell
    2.重写initWithStyle:reuseIdentifier
    添加所有子控件,不需要设置frame 和数据 ;子控件一次性的属性设置
    3.提供两个模型 数据模型和frame模型
    4.cell 拥有一个frame模型
    5.重写frame模型的setter方法 在这个方法中设置子控件的显示数据和frame

  • Unknown type name “CGRect”,did you mean “Rect”? 原因:Xcode 6 之后创建文件 不自动导入 #import ,添加上之后就好了。