UILabel,UITextField,UIButton,UIImageView,UISlider
分类:
其他好文 时间:
2016-02-16 14:50:18
阅读次数:
159
iOS如何避免对多个按钮同时多点触摸 答: 设置所有UIButton的ExclusiveTouch属性为YES 如何设置? -(void)setExclusiveTouchForButtons:(UIView *)myView { for (UIView * v in [myView subview
分类:
移动开发 时间:
2016-02-04 18:11:17
阅读次数:
317
UIButton *btn = [UIButton buttonWithType:UIButtonTypeCustom]; btn.frame = CGRectMake(100, 100, 50, 50); btn.backgroundColor = [UIColor redColor]; btn.
分类:
其他好文 时间:
2016-02-01 18:47:12
阅读次数:
100
//清除缓存按钮的点击事件 - (void)putBufferBtnClicked:(UIButton *)btn{ CGFloat size = [self folderSizeAtPath:NSSearchPathForDirectoriesInDomains(NSDocumentDirecto
分类:
移动开发 时间:
2016-01-30 17:40:01
阅读次数:
163
- 往storyboard中拖拽一个UIButton,比如我的示例图片QQ图片尺寸是36*36,我把它设置给UIButton属性中的Image,只要UIButton的尺寸大于等于QQ图片尺寸,那么QQ图片尺寸,不会进行缩放,在没有文字的情况下,默认是显示在UIButton的正中间,用面板里面的模式去
分类:
其他好文 时间:
2016-01-29 00:16:02
阅读次数:
179
1, Swift 修改导航栏颜色 self.navigationController?.navigationBar.barTintColor 2, Swift button 属性设置时直接进行初始化 var leftButton : UIButton = UIButton(type: UIButto
分类:
移动开发 时间:
2016-01-28 18:46:29
阅读次数:
179
//清除缓存按钮的点击事件 - (void)putBufferBtnClicked:(UIButton *)btn{ CGFloat size = [self folderSizeAtPath:NSSearchPathForDirectoriesInDomains(NSDocumentDirecto
分类:
移动开发 时间:
2016-01-28 15:15:23
阅读次数:
178
//在-(void)viewWillAppear:(BOOL)animated方法中添加返回按钮//返回按钮 UIButton *leftButton = [UIButton buttonWithType:UIButtonTypeCustom]; leftButton.frame=CGRect...
分类:
移动开发 时间:
2016-01-26 12:28:13
阅读次数:
215
/设置按钮上的自体的大小//[btn setFont: [UIFont systemFontSize: 14.0]]; //这种可以用来设置字体的大小,但是可能会在将来的SDK版本中去除改方法//应该使用btn.titleLabel.font = [UIFont systemFontOfSize: ...
分类:
移动开发 时间:
2016-01-26 01:35:05
阅读次数:
235