码迷,mamicode.com
首页 >  
搜索关键字:uibutton    ( 1178个结果
OC 和 js 交互
首先导入 #import <JavaScriptCore/JavaScriptCore.h> 声明 对象 @property (nonatomic, strong) JSContext *context; 1, oc调用js的方法并获取参数 - (void)webViewDidFinishLoad: ...
分类:Web程序   时间:2017-03-01 12:57:12    阅读次数:229
Swift - 点击箭头旋转
let arrowImage = UIImageView(image: UIImage(named: "Machine_arrow")!.imageWithRenderingMode(.AlwaysTemplate)) let arrowButton = UIButton(frame: CGRect ...
分类:编程语言   时间:2017-02-24 13:39:07    阅读次数:315
自定义UIButton
#import <UIKit/UIKit.h> #import "UIView+SDExtension.h" @interface CookButton : UIButton @end #import "CookButton.h" @implementation CookButton - (inst ...
分类:其他好文   时间:2017-02-14 23:58:29    阅读次数:313
1-2基础控件
什么是UIImageView UIKit框架提供了非常多的UI控件,但并不是每一个都很常用,有些控件可能1年内都用不上,有些控件天天用,比如UIButton、UILabel、UIImageView、UITableView等等 UIImageView极其常用,功能比较专一:显示图片 什么是UILabe ...
分类:其他好文   时间:2017-02-04 15:20:59    阅读次数:291
SDWebImage图片二级缓存异步加载基本原理
关于SDWebImage SDWebImage是一个针对图片加载的插件库,提供了一个支持缓存的用于异步加载图片的下载工具,特别的为常用的UI元素:UIImageView,UIButton和MKAnno...
分类:Web程序   时间:2017-01-26 00:20:09    阅读次数:398
iOS开发-UI (二)Button和Image
知识点: 1.UIButton使用和事件机制 2.UIImage 3.自定义UIButton UIButton 1.创建方式 按钮类型 UIButtonTypeCustom 用户自定义按钮 UIButtonTypeRoundedRect 系统按钮 UIButtonTypeDetailDisclosu ...
分类:移动开发   时间:2017-01-17 00:17:20    阅读次数:212
UIButton的探秘
原文链接sizeToFit()和sizeThatFits(_:)sizeToFit()会调用sizeThatFits(_:)方法,将现在的frame作为参数。然后根据函数返回的结果更新view。sizeToFit will simply call through to sizeThatFits: p... ...
分类:其他好文   时间:2017-01-14 09:29:48    阅读次数:355
iOS--圆角按钮
//进入按钮 UIButton *enterMainButton = [[UIButton alloc] initWithFrame:CGRectMake(65, self.PageHeight-120,250 , 45)]; enterMainButton.layer.borderWidth = ... ...
分类:移动开发   时间:2017-01-11 15:43:27    阅读次数:345
image图片拉伸
//iOS5以前设置拉伸图片 -(void)loadImageBeforeIOS5{ //35*30 UIButton *nextButton = [[UIButton alloc] initWithFrame:CGRectMake(80, 180, 100, 40)]; [nextButton s ...
分类:其他好文   时间:2017-01-10 14:52:26    阅读次数:157
验证码计时 -- UIButton setTitle 闪烁问题解决方案
首先,有各种版本 方法一: 我运用的一种极其简单的版本: 将UIButton的Type 设成 Custom 就不会有闪烁的问题重现 @property (strong, nonatomic) IBOutlet UIButton *getCodeBtn; @property (nonatomic, s ...
分类:其他好文   时间:2017-01-10 14:38:18    阅读次数:214
1178条   上一页 1 ... 10 11 12 13 14 ... 118 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!