@property(nonatomic, readonly, retain) UILabel *titleLabelDescription - 描述A view that displays the value of the currentTitle property for a button. (r...
分类:
其他好文 时间:
2014-06-28 21:42:04
阅读次数:
277
解析UIControl从下图可以看出,UIControl继承自UIView,添加了响应事件功能.UIButton之所以能响应各种各样的事件是因为继承自UIControl使用UIControl可以精确的控制按钮事件,我用定制UIControlEventValueChanged来进行说明.YXContr...
分类:
其他好文 时间:
2014-06-28 18:26:20
阅读次数:
199
如果界面上有多个按钮的话,当你同时点击这几个按钮,会同时出发多个方法,再如果你的action进行了界面跳转,则会出现一个bug,你不信的话,可以试试。。。
之前有想过解决方法,第一种就是设置一个全局变量,当点击的时候将bool值设置为yes,在方法的最后再设置回来,这样的话是一件非常麻烦的事情;后来发现苹果对此已经有相关的解决方案:[btn setExclusiveTouch:YES];...
分类:
移动开发 时间:
2014-06-28 09:14:48
阅读次数:
208
UIButton setImage 和 setTitle之后,默认的 image和title 对齐方式是居中,
由于 title 长度不固定,
所以如果要几个这样有image有title的按钮纵向排列对齐,
无论你怎么调整 imageEdgeInsets和titleEdgeInsets,都有可能导致前面图片对得不整齐,
所以,干脆来个向左对齐!!简化处理!!
记住了,这么设置:
...
分类:
其他好文 时间:
2014-06-26 10:49:40
阅读次数:
314
【UIButton】 Button is a simple component designed to receive hover, pressed and click events, and change the color of a remote sprite. You can also op....
分类:
其他好文 时间:
2014-06-25 13:30:43
阅读次数:
276
1.针对cell上按钮(UIButton)的不响应SEL 这个问题一般是由xib导致的,当从xib中load cell的时候,cell会自动在xib上加一层contentView,所以xib中的按钮等控件都被contentView挡住了,可以将contentView的backgroundColor....
分类:
其他好文 时间:
2014-06-25 11:50:53
阅读次数:
189
本课主要介绍iOS项目的创建、第一个iOS项目的开发、UILabel、UIButton的使用。
本教程摒弃枯燥的语法和知识讲解,全是有趣有料的项目实战!
视频下载:pan.baidu.com/s/1ntHl79B
swift交流群:307561190...
分类:
移动开发 时间:
2014-06-22 15:19:42
阅读次数:
223
iOS知识点大纲Xcode使用 1. 创建UI工程基本控件 2. UILabel标签 3. UIButton按钮 项目: 计算器项目 4. UIImageView(UIImage) 项目: 人人界面 5. UIView 视图+触摸 项目: 人人界面 6. UITextFi...
分类:
移动开发 时间:
2014-06-21 14:11:14
阅读次数:
288
1 UIButton *btn = [UIButton buttonWithType:UIButtonTypeCustom]; 2 CGRect frame = CGRectMake(40, 180, 240, 32); 3 4 btn.frame = frame...
分类:
其他好文 时间:
2014-06-20 20:39:56
阅读次数:
209
- (void)viewDidLoad{ [super viewDidLoad]; // Do any additional setup after loading the view. _timeBtn = [UIButton buttonWithType:UIButton...
分类:
其他好文 时间:
2014-06-20 16:40:31
阅读次数:
172