
UI进阶
爲妳鎻愛
本人热爱IOS开发,希望通过IOS改变自己,改变大家,改变所有人,改变世界
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
5.UIButton(按钮)知识总结
UIButton继承于UIControlUIControl继承于UIView 初始化button 一般选择自定义的 用类方法初始化不用自己释放UIButton *button = [UIButton buttonWithType:(UIButtonTypeCustom)]; 2.设置位置button.frame = CGRectMake(100, 100, 100, 100);3.设置背景颜色原创 2015-11-14 15:11:21 · 603 阅读 · 0 评论 -
2.UILabel(文本视图)知识总结
显示文本的视图UILabelUILabel继承于UIView 可以使用UIView里的方法初始化UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(100 , 100, 100, 200)];设置属性 添加背景颜色 label.backgroundColor = [UIColor yellowColor];1.添加字原创 2015-11-14 10:19:10 · 412 阅读 · 0 评论