在开发当中,可能很多时候都需要做个点赞的需求,如果用按钮实现,按钮作为一个系统复合控件,外部是一个 View--》UIControl的容器,内部包含了UILabel和UIImage,以及一些排版规则。用UIButton就很难去做一些在“赞”和“取消赞”切换时的效果。可是我们又很需要UIButton似...
分类:
其他好文 时间:
2015-09-06 12:23:49
阅读次数:
141
- (void)viewDidLoad { [super viewDidLoad]; //自定义button控件 UIButton *button=[UIButton buttonWithType:UIButtonTypeRoundedRect]; //设置button的位置和大小 [b...
分类:
移动开发 时间:
2015-09-04 18:32:16
阅读次数:
157
//异步函数+全局并发队列 嵌套 异步函数+主队列#import "ViewController.h"@interface ViewController ()@property (weak, nonatomic) IBOutlet UIButton *button;@end@implementati...
分类:
编程语言 时间:
2015-09-02 23:22:58
阅读次数:
346
声明:此处所有代码都为在AppDelegate中操作的UIButton@implementationAppDelegate{UILabel*_label;//创建一个label成员变量}//入口1 - (BOOL)application:(UIApplication *)application di...
分类:
其他好文 时间:
2015-09-01 13:56:13
阅读次数:
238
8.29 UI学习第一天 日报
8.30 UI学习第二天 日报
1.今天学习了TextField的leftView和rightView属性,便利用重写TextField中的rightViewRectForBounds方法对昨天完成的部分进行添加密码可视化的功能,首先添加"小眼睛"UIButton,点击触发TextField的secureTextEntry属性从YES变成NO的事件。利...
分类:
其他好文 时间:
2015-09-01 10:51:32
阅读次数:
237
//login button // .h 中定义 UIButton *_loginBtn; @property (strong,nonatomic)UIButton *loginBtn; // .m 中实现设置按钮 @synthesize loginB...
分类:
其他好文 时间:
2015-09-01 10:41:28
阅读次数:
135
-(void)done:(UIButton*)btn{ if([self.delegaterespondsToSelector:@selector(setDefaultLabWithTitle:)]) { [self.delegatesetDefaultLabWithTitle:self.bt...
分类:
其他好文 时间:
2015-09-01 01:38:42
阅读次数:
212
UIButton的详细介绍:一、按钮具有的属性:@property(nonatomic,readonly)UIButtonType buttonType; //按钮类型@property(nonatomic,readonly,retain)NSString*currentTitle; //按钮当前文...
分类:
其他好文 时间:
2015-08-31 21:31:24
阅读次数:
167
transform主要应用于动画1、让一个按钮每次向上移动100的距离UIButton *head = (UIButton *)[self.view viewWithTag:10];head.transform = CGAffineTransformTranslate(head.transform,...
分类:
移动开发 时间:
2015-08-31 21:22:24
阅读次数:
178
关于控件的继承关系(面试重点):(1)所有的控件都继承自UIView。(2)能监听事件的都是先继承自UIControl,UIControl再继承自UIView。比如UIButton。(3)能整体滑动的都是继承自UIScrollView,UIScrollView再继承自UIView。比如UITable...
分类:
移动开发 时间:
2015-08-31 21:07:54
阅读次数:
233