解决方法 : 有法为此在 SDWebImage: SDWebImage / SDWebImage / UIButton+WebCache.h 导入此文件在您的类: #import <SDWebImage/UIButton+WebCache.h> 使用此方法的任何一种: - (void)setBack ...
分类:
移动开发 时间:
2017-09-02 20:01:42
阅读次数:
221
文章围绕这五点: 1. 泛型是什么 2. 为什么要用泛型 3. 泛型怎么用 4. 泛型进阶 5. 泛型的延伸使用 泛型(Generics)是什么? 引用Apple中Generics的描述: Generic code enables you to write flexible, reusable fu ...
分类:
移动开发 时间:
2017-09-01 23:10:15
阅读次数:
364
UIButton在不同状态(被点击\正常状态\不可用\...)标题是可以不同的按钮的状态typedefNS_OPTIONS(NSUInteger,UIControlState){
UIControlStateNormal=0,
UIControlStateHighlighted=1<<0,//usedwhenUIControlisHighlightedisset
UIControlStateDisabled=1<<1,
UICon..
分类:
其他好文 时间:
2017-08-31 09:40:56
阅读次数:
139
UIButton+WebCache .h 文件 1.获取当前button的图片url。 2.根据不同的状态获取图片url。 3.设置按钮不同状态的url,然后异步加载,并且缓存。 这几个方法的实现全部调用这个方法实现: 4.我们再来看这几个方法: 同样,这五个方法全部是调用这个方法实现,作用是异步加 ...
分类:
Web程序 时间:
2017-08-30 19:53:10
阅读次数:
255
// // ViewController.m // 02-UIButton(在代码中使用) // #import "ViewController.h" @interface ViewController () @end @implementation ViewController - (void)v... ...
分类:
移动开发 时间:
2017-08-29 18:09:24
阅读次数:
208
/** 大图 */ - (IBAction)bigImg { //1.添加按钮遮罩层 UIButton *cover=[[UIButton alloc] init]; cover.frame=self.view.bounds; cover.backgroundColor=[UIColor black... ...
分类:
移动开发 时间:
2017-08-23 10:36:14
阅读次数:
297
在ios第一版中: 我们为输出口同时声明了属性和底层实例变量,那时,属性是oc语言的一个新的机制,并且要求你必须声明与之对应的实例变量,例如: 注意:(这个是以前的用法) @interface MyViewController :UIViewController { UIButton *myButt ...
分类:
移动开发 时间:
2017-08-22 16:05:08
阅读次数:
238
首先我们要布局一下。使用sizeclass来布局: 连线过来: @property (weak, nonatomic) IBOutlet UIButton *bird; @property (strong, nonatomic) IBOutletCollection(UIImageView) NSA ...
分类:
其他好文 时间:
2017-08-18 11:11:17
阅读次数:
201
// 重写导航栏返回按钮方法 func configBackBtn() -> Void { // 返回按钮 let backButton = UIButton(type: .custom) // 给按钮设置返回箭头图片 backButton.setImage(UIImage(named: "Navi ...
分类:
编程语言 时间:
2017-08-14 11:33:56
阅读次数:
2469
方法一:写一个UILabel(FontExtension)扩展重写initWithFrame(手写代码必走方法)和awakeFromNib(xib必走方法)当然UIButton、UITextView等控件都可以用这种方式#import <UIKit/UIKit.h>@interface UILabe ...
分类:
移动开发 时间:
2017-08-10 10:08:50
阅读次数:
378