有些时候我们想让UIButton的title居左对齐,我们设置 btn.textLabel.textAlignment = UITextAlignmentLeft 是没有作用的,我们需要设置 btn.contentHorizontalAlignment = UIControlContentHoriz ...
分类:
其他好文 时间:
2016-08-18 12:37:19
阅读次数:
100
1:UIlabel————标签,显示文字,例如账号注册前面的姓名,邮箱等都是用label显示; 2:UIbutton————按钮,可在按钮上面加wenzi或图片,点击后会触发相应的某个事件,例如注册,登录多用了button按钮; 3:UIimageview————图片控件,用来展现图片的 ; 4:U ...
分类:
其他好文 时间:
2016-08-14 20:43:16
阅读次数:
157
1、初始化 UIButton *btn = [UIButton buttonWithType:UIButtonTypeCustom]; [btn setFrame:CGRectMake(100, 100, 60, 60)]; [self.view addSubview:btn]; 2、常用设置 设置 ...
分类:
其他好文 时间:
2016-08-13 08:49:56
阅读次数:
165
-(void)viewDidLoad { [super viewDidLoad]; // static const char associatedButtonkey; UIButton *btn = [UIButton buttonWithType:UIButtonTypeCustom]; [btn ...
分类:
其他好文 时间:
2016-08-11 12:38:12
阅读次数:
140
代码创建按钮UIButton: (一)基本设置 //创建中间“+”按钮 UIButton *addBtn = [[UIButton alloc] init]; //设置默认背景图片 [addBtn setBackgroundImage:[UIImage imageNamed:@"AddButtonI ...
分类:
移动开发 时间:
2016-08-11 00:45:39
阅读次数:
259
pod 'DXPopover', '~> 0.1.1' 带尖叫的提示框 pod 'MMDrawerController', '~> 0.6.0' 最好的抽屉效果 pod 'MMProgressHUD', '~> 0.3.2' 提示框 UIButton+touch 防止按钮疯狂点击,放入工程立即生效 ...
分类:
移动开发 时间:
2016-08-03 10:30:19
阅读次数:
170
接着昨天的 UIButton中的三个UIEdgeInsets属性 ,今天我们具体谈谈UIButton的contentEdgeInsets、titleEdgeInsets、imageEdgeInsets属性。 创建UIButton 创建一个button,让button的title居左,以便观察: UI ...
分类:
其他好文 时间:
2016-08-01 09:10:37
阅读次数:
122
btn.frame = CGRectMake(x, y, width, height); [btn setTitle: @”search” forState: UIControlStateNormal]; //设置按钮上的自体的大小 //[btn setFont: [UIFont systemFon ...
分类:
其他好文 时间:
2016-07-31 00:01:18
阅读次数:
500
设置全局 的self.starButton 多个Button公用方法(可用tag值区分Button点击事件) - (void)click:(UIButton *)button{ if(button!=self.starButton){ self.starButton.selected=NO; sel ...
分类:
移动开发 时间:
2016-07-25 16:17:31
阅读次数:
226
UIButtoniosUIButton类总述 为了响应用户的交互动作,UIButton 对象可以执行自定义的代码。当你按下按钮时,或选择一个已经获取焦点的按钮时,按钮就会执行任何绑定到它上面的动作。通过文本、或图片、或两者结合的方面表达按钮的意图。按钮的外观是可配置的,因此,你可以给按钮着色,或者为... ...
分类:
其他好文 时间:
2016-07-23 18:10:14
阅读次数:
142