FrameProperty 给UIView添加的一个分类,可以快速获得或者设置控件frame的内部属性,如下: UIView *v = [[UIView alloc] init]; v.width = 300; v.height = 100; v.x = 50; v.y = 50;