UI
南城同学
这个作者很懒,什么都没留下…
展开
-
UIView简介及常用设置
**UIView** 一、简介 UIView是一个矩形的视图,用来展示所有的东西, 在iOS中,所有可见的控件都是UIView的子类或衍生类。 使用步骤: 1.创建对象; 2.设置属性; 3.扔到窗户上.二、 定义及基本设置1.定义(创建对象) UIView *view = [[UIView alloc] initWithFrame:CGRectMake(100, 10原创 2015-12-16 10:26:46 · 477 阅读 · 0 评论 -
UILable常用设置
1.创建对象 UILabel *lable = [[UILabel alloc] initWithFrame:CGRectMake(50, 50, 200, 300)];2.标签写文字 lable.text = @”HeyHey”;3.标签添加到视图上 [self.view addSubview:lable];4.设置文字颜色 lable.textColor原创 2015-12-22 14:51:15 · 459 阅读 · 0 评论 -
UITableViewCell中如何添加图片数组
步骤一: 在控制文件中引入系统的方法步骤二: 声明一个数据:可变数组@property (nonatomic, strong) NSMutableArray *dataImage;步骤三: 在 - (void)viewDidLoad{} 中指定代理,模拟数据的产生和请求self.fv.tableView.dataSource = self; [self makeData]; 步骤四: 创原创 2015-12-20 18:16:51 · 2625 阅读 · 0 评论 -
UITextField的常用设置
1.创建对象 UITextField *field = [[UITextField alloc] initWithFrame:CGRectMake(100, 100, 200, 50)];2.设置属性 field.borderStyle = UITextBorderStyleRoundedRect;3.添加到视图 [self.view addSubview:field]原创 2015-12-22 15:20:31 · 490 阅读 · 0 评论 -
UIButton的常用设置及响应事件的添加
1.创建对象 1) UIButton *Button = [UIButton buttonWithType:UIButtonTypeSystem]; 2) Button.frame = CGRectMake(100, 200, 150, 50); 3) Button.backgroundColor = [UIColor colorWithRed:0.931 green:0.5原创 2015-12-22 15:27:52 · 1095 阅读 · 0 评论 -
iOS字体清单
在实际应用中,难免要选择很多字体,来设置自己的文本。 搞一个字体参考图:iPhone字体清单:Font Family: American Typewriter Font: AmericanTypewriter Font: AmericanTypewriter-BoldFont Family: AppleGothic Font: AppleGothicFont Family: Arial F转载 2015-12-31 18:57:00 · 415 阅读 · 0 评论 -
iOS UItextField控件详解
//初始化textfield并设置位置及大小UITextField *text = [[UITextField alloc]initWithFrame:CGRectMake(20, 20, 130, 30)];//设置边框样式,只有设置了才会显示边框样式 text.borderStyle = UITextBorderStyleRoundedRect;typedef enum {UITextBord转载 2016-03-04 17:48:54 · 396 阅读 · 0 评论