1.UIButton的基本设置 1 //创建UIButton 2 UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom]; 3 button.frame = CGRectMake(150, 200, 70,...
分类:
其他好文 时间:
2016-01-25 21:13:53
阅读次数:
149
创建一个测试的UIButton#import "ViewController.h"@interface ViewController ()@property(nonatomic, strong)UIButton *button;@end@implementation ViewController- ...
分类:
其他好文 时间:
2016-01-25 00:03:23
阅读次数:
387
1 #import 2 3 @interface NJTitleButton : UIButton 4 5 @end 6 7 8 #import "NJTitleButton.h" 9 10 @interface NJTitleButton ()11 @property (nonatom...
分类:
移动开发 时间:
2016-01-24 18:22:32
阅读次数:
221
获取文字 button.currentTitle更多如下:@property(nullable, nonatomic,readonly,strong) NSString *currentTitle; // normal/highlighted/selected/disabled. can...
分类:
其他好文 时间:
2016-01-23 21:32:04
阅读次数:
157
关于ZBarReaderView 打开闪光灯ZBarReaderView *readerView;- (void)changeLight:(id)sender{ UIButton *btn = (UIButton *)sender; if (btn.selected) { btn.sele...
分类:
其他好文 时间:
2016-01-23 18:02:20
阅读次数:
163
1 - (IBAction)captureView:(UIButton *)sender { 2 3 // 延迟1 ~2 秒之后再截屏 4 dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(2.0 * NS...
分类:
移动开发 时间:
2016-01-23 18:00:14
阅读次数:
162
- (void)action:(id)sender{UIButton * button = sender;[button setTitle:@"清理完毕" forState:UIControlStateNormal];NSArray *paths = NSSearchPathForDirectori...
分类:
移动开发 时间:
2016-01-23 12:51:21
阅读次数:
146
UIView 不像 UIButton 加了点击事件就会有点击效果,体验要差不少,这里分别通过自定义和扩展来实现类似 UIButton 的效果。
分类:
编程语言 时间:
2016-01-20 12:54:49
阅读次数:
524
这篇文章想跟大家分享的主旨是iOS捕获用户事件的各种情况,以及内部封装的一些特殊事件。我们先从UIButton谈起,UIButton大家使用的太多了,他特殊的地方就在于其内置的普通Default/高亮Highlighted/选择Selected/可用Enable的几个状态(UIControlStat...
分类:
移动开发 时间:
2016-01-19 14:24:36
阅读次数:
211
首先我们要布局一下,使用sizeclass来布局:连线过来:
@property (weak, nonatomic) IBOutlet UIButton *bird;
@property (strong, nonatomic) IBOutletCollection(UIImageView) NSArray *ices;对于冰块的连线,因为我们这里的冰块有4块,所以我们直接连的是一个数组
懒加载一个U...
分类:
其他好文 时间:
2016-01-19 10:40:53
阅读次数:
153