摘要: 创建UISegmentControl对象 UISegmentedControl *segmented = [[UISegmentedControl alloc] initWithItems:@[@"北京", @"上海", @"广州"]]; segmented.frame = CGRectMake(1 阅读全文
posted @ 2016-01-02 18:17 侯文超 阅读(206) 评论(0) 推荐(0) 编辑
摘要: UISwitch iOS中的开关控件,只有两种状态,打开或关闭. aSwitch.tintColor = [UIColor redColor]; //关闭状态下的渲染颜色 aSwitch.onTintColor = [UIColor blueColor]; //打开状态下的渲染颜色. aSwitch 阅读全文
posted @ 2016-01-02 17:55 侯文超 阅读(336) 评论(0) 推荐(0) 编辑
摘要: 点击textfield,会自动弹出键盘 要让键盘收回来,先设置个代理:[field setTextFieldDelegate:self]; 可设置成自己,也可设置成其他对象,只要在对应的类中,遵循UITextFieldDelegate协议 在UITextFieldDelegate协议中,有一些可选的 阅读全文
posted @ 2015-12-26 18:03 侯文超 阅读(267) 评论(0) 推荐(0) 编辑
摘要: 1.背景颜色 field.backgoundColor = [UIColor redColor]; 2.设置field文字 field.text = @"输入文字"; 3.设置field的提示文字 field.placeholder = @"请输入用户名"; 4.设置field开始编辑时清除提示内容 阅读全文
posted @ 2015-12-26 16:32 侯文超 阅读(438) 评论(0) 推荐(0) 编辑
摘要: 1.背景颜色 btn.backgroundColor = [UIColor redColor]; 2.给按钮添加文字并添加显示状态 [btn setTitle@"播放" forState:UIControlStateNormal]; 3.设置文字的颜色并添加显示状态 [btn setTitleCol 阅读全文
posted @ 2015-12-26 16:14 侯文超 阅读(190) 评论(0) 推荐(0) 编辑
摘要: .设置字体样式(加粗) label.font = [UIFont boldSystemFontOfSize:30]; 6.设置字体类型 label.font = [UIFont fontWithName:@"Heiti SC" size:18]; 9.设置文字阴影效果 label.shadowCol 阅读全文
posted @ 2015-12-26 15:55 侯文超 阅读(138) 评论(0) 推荐(0) 编辑
摘要: 创建一个UIView对象分四步: 1.创建一个view对象,并设置其大小 UIView *view = [[UIView alloc] initWithFrame:CGRectMake:(CGFloat x, CGFloat y, CGFloat width, CGFloat height); 2. 阅读全文
posted @ 2015-12-20 20:56 侯文超 阅读(267) 评论(1) 推荐(0) 编辑
摘要: 相同点: 都可以作为方法返回值类型 在initWithName:方法中是一样的,例如: - (id)initWithName:(NSString *)name; - (instancetype)initWithName:(NSString *)name; 编译器在编译时直接将id转换成instanc 阅读全文
posted @ 2015-12-20 20:31 侯文超 阅读(167) 评论(0) 推荐(0) 编辑