首先导入 #import <JavaScriptCore/JavaScriptCore.h> 声明 对象 @property (nonatomic, strong) JSContext *context; 1, oc调用js的方法并获取参数 - (void)webViewDidFinishLoad: ...
分类:
Web程序 时间:
2017-03-01 12:57:12
阅读次数:
229
let arrowImage = UIImageView(image: UIImage(named: "Machine_arrow")!.imageWithRenderingMode(.AlwaysTemplate)) let arrowButton = UIButton(frame: CGRect ...
分类:
编程语言 时间:
2017-02-24 13:39:07
阅读次数:
315
#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
什么是UIImageView UIKit框架提供了非常多的UI控件,但并不是每一个都很常用,有些控件可能1年内都用不上,有些控件天天用,比如UIButton、UILabel、UIImageView、UITableView等等 UIImageView极其常用,功能比较专一:显示图片 什么是UILabe ...
分类:
其他好文 时间:
2017-02-04 15:20:59
阅读次数:
291
关于SDWebImage
SDWebImage是一个针对图片加载的插件库,提供了一个支持缓存的用于异步加载图片的下载工具,特别的为常用的UI元素:UIImageView,UIButton和MKAnno...
分类:
Web程序 时间:
2017-01-26 00:20:09
阅读次数:
398
知识点: 1.UIButton使用和事件机制 2.UIImage 3.自定义UIButton UIButton 1.创建方式 按钮类型 UIButtonTypeCustom 用户自定义按钮 UIButtonTypeRoundedRect 系统按钮 UIButtonTypeDetailDisclosu ...
分类:
移动开发 时间:
2017-01-17 00:17:20
阅读次数:
212
原文链接sizeToFit()和sizeThatFits(_:)sizeToFit()会调用sizeThatFits(_:)方法,将现在的frame作为参数。然后根据函数返回的结果更新view。sizeToFit will simply call through to sizeThatFits: p... ...
分类:
其他好文 时间:
2017-01-14 09:29:48
阅读次数:
355
//进入按钮 UIButton *enterMainButton = [[UIButton alloc] initWithFrame:CGRectMake(65, self.PageHeight-120,250 , 45)]; enterMainButton.layer.borderWidth = ... ...
分类:
移动开发 时间:
2017-01-11 15:43:27
阅读次数:
345
//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的Type 设成 Custom 就不会有闪烁的问题重现 @property (strong, nonatomic) IBOutlet UIButton *getCodeBtn; @property (nonatomic, s ...
分类:
其他好文 时间:
2017-01-10 14:38:18
阅读次数:
214