iOS - UI - UIActivityIndicatorView
摘要:1、UIActivityIndicatorView HUD 指示器 UIActivityIndicatorView * indicatorView = [[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivity
阅读全文
UIButton的简单操作和实际应用
摘要:不能使用点语法创建button的文本和颜色,因为button具有多种状态 //这里创建一个圆角矩形的按钮UIButton *button1 = [UIButton buttonWithType:UIButtonTypeRoundedRect];// 能够定义的button类型有以下6种,// typ
阅读全文
UIImage的简单用法和实际操作
摘要:png,pdf不需要添加后缀名 jpg添加后缀名 存储 UIImagejpg contentMode属性 这个属性是用来设置图片的显示方式,如居中、居右,是否缩放等,有以下几个常量可供设定: UIViewContentModeScaleToFill UIViewContentModeScaleAsp
阅读全文
UILabel的简单用法和实际操作
摘要:1、UILabel **//设置文字 label.text = @"欢迎收看灌篮高手,我是安溪教练";**//设置文字颜色label.textColor = [UIColor grayColor];**//默认17号字体label.font = [UIFont systemFontOfSize:34
阅读全文