#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.创建可显示的字符集。 @property (nonatomic, copy) NSString *filter; @property (nonatomic, strong) NSAttributedString *merchantShopNameRich; 2.获取到具体的搜索字符。 - (NS ...
分类:
其他好文 时间:
2017-02-08 12:39:16
阅读次数:
232
知识点: 1.UITableView使用 2.UITableView分段功能 3.UITableViewCell重用机制 UITableView使用 1.UITableView作用 2.UITableView创建 - (id)initWithFrame:(CGRect)frame style:(UI ...
分类:
移动开发 时间:
2017-02-07 22:23:55
阅读次数:
296
1、CATransition介绍: 2、简单使用: 2-1、在storyboard中搭建界面: 2-2、实现转场动画: 1.#import "ViewController.h"2.3.@interface ViewController ()4.@property (weak, nonatomic) ...
分类:
移动开发 时间:
2017-02-05 15:37:15
阅读次数:
182
1、原子属性: 1-1、nonatomic与atomic: nonatomic : 非原子属性; atomic : 原子属性; 线程安全的,针对多线程设计的属性修饰符,是默认值. 保证同一时间只有一个线程能够写入,但是同一个时间多个线程都可以读取; 单写多读 : 单个线程写入write,多个线程可以 ...
分类:
移动开发 时间:
2017-02-05 15:17:32
阅读次数:
260
UITextField使用 1.创建方式 例: UITextField *text = [[UITextField alloc]initWithFrame:CGRectMake(20, 20, 130, 30)]; 2.常用方法和属性 1)边框样式 @property(nonatomic) UITe ...
分类:
移动开发 时间:
2017-01-19 21:14:46
阅读次数:
236
首先,有各种版本 方法一: 我运用的一种极其简单的版本: 将UIButton的Type 设成 Custom 就不会有闪烁的问题重现 @property (strong, nonatomic) IBOutlet UIButton *getCodeBtn; @property (nonatomic, s ...
分类:
其他好文 时间:
2017-01-10 14:38:18
阅读次数:
214
copy不能修改,strong可以修改,防止字符串被意外修改.demo: ——————————————————code 你要的 demo—————————————————— @property (nonatomic, copy) NSString * copystring; @property (n ...
分类:
其他好文 时间:
2017-01-09 00:30:45
阅读次数:
142
@interface ViewController () @property (nonatomic,strong)UIImageView *topImageView; @property(nonatomic,strong)UIImageView *bottomImageView; @end @imp ...
分类:
其他好文 时间:
2017-01-03 09:48:14
阅读次数:
193