设计为了美观。button有时设计的太小,这么一来是好看了。可是button不好点中了。曾经有非常多解决方法,如用hitTest等方法。都比較复杂。后来我发现一个简单的方法。原理就是UIButton setImage时,假设image比button小,就会自己主动居中显示。所以非常easy,仅仅用将 ...
分类:
其他好文 时间:
2019-04-20 15:44:06
阅读次数:
184
#import @interface ViewController () @property (nonatomic,retain) UIButton *beginTestBtn; @property (nonatomic,retain) UILabel *textLabel; @end @imple... ...
分类:
移动开发 时间:
2019-03-09 16:39:05
阅读次数:
293
- (void)unisversalButtonAcrion:(UIButton *)sender { [[self class] cancelPreviousPerformRequestsWithTarget:self selector:@selector(todoSomething:) obje... ...
分类:
移动开发 时间:
2019-02-22 16:44:38
阅读次数:
331
2017.07.17 18:10* 字数 66 阅读 644评论 0喜欢 5 oc之封装「可输入值」的UIStepper 最终效果 要求: Platform: iOS7.0+ Language: Objective-C Editor: Xcode6.0+ 实现 思路 UIButton + UITex ...
分类:
其他好文 时间:
2019-01-30 17:20:42
阅读次数:
174
- (void)buttonAction:(UIButton *)sender { UITableViewCell *cell = (UITableViewCell *)[[sender superview] superview]; NSIndexPath *indexPath = [_tableV ...
分类:
其他好文 时间:
2019-01-08 01:01:18
阅读次数:
212
```swift
mport UIKit class ViewController: UIViewController { override func viewDidLoad() { super.viewDidLoad() //创建Button类型:system,custom,contactAdd,... ...
分类:
编程语言 时间:
2019-01-06 11:20:10
阅读次数:
225
学习总结: 1. nil 和null? 2.Values of type 'NSInteger' should not be used as format arguments; add an explicit cast to 'long' instead。 ...
分类:
移动开发 时间:
2018-12-31 15:52:22
阅读次数:
166
一、经常使用的,基本就是每次项目迭代都需要使用的 UIView、UILabel、UIImage、UIColor、UIFont、UIImageView、UITextField、UIButton、 UIScrollView、UITableView、UITableViewCell、UICollection ...
分类:
其他好文 时间:
2018-12-14 19:58:38
阅读次数:
188
在项目开发中经常需要用到倒计时的功能,比如注册部分获取验证码时,这里通过extension(UIButton)的方式来实现倒计时的功能 直接上代码 var codeTimer = DispatchSource.makeTimerSource(queue:DispatchQueue.global()) ...
分类:
编程语言 时间:
2018-12-14 17:38:02
阅读次数:
221
如何给button增加下划线简单版 - (void)setUnderLineForButton:(UIButton *)btn withTitle:(NSString *)title { //利用富文本的方式增加button下划线 NSMutableAttributedString*str = [[ ...
分类:
其他好文 时间:
2018-11-01 16:11:42
阅读次数:
146