#import "QLCWebViewController.h" #import @interface QLCWebViewController () @property (weak, nonatomic) IBOutlet UIView *contentView; @property (weak,... ...
分类:
Web程序 时间:
2017-05-15 21:01:44
阅读次数:
275
由浅入深先来看看最简单的一个例子:#import"ViewController.h"@interfaceViewController()@property(nonatomic,strong)idstrongPoint;@property(nonatomic,weak)idweakPoint;@end@implementationViewController-(void)viewDidLoad{
[superviewDidLoad];//self.strongPoint=[NS..
分类:
其他好文 时间:
2017-05-12 13:45:39
阅读次数:
275
@interface BillsCell () @property (nonatomic, strong) UIPanGestureRecognizer *panRecognizer; @property(nonatomic,assign) CGFloat lastDownX ; @property ...
分类:
微信 时间:
2017-05-09 16:54:26
阅读次数:
285
一、MRC 与 ARC 各自的属性修饰符 二、内存管理修饰符 MRC 模式下属性修饰符 retain: 引用计数加1。 assign: 分配内存,类似于copy。常用于基本数据类型,比如:int,long,NSInteger等。 ARC 模式下属性修饰符 weak: 当引用计数为零时,将其置为nil ...
分类:
其他好文 时间:
2017-05-07 15:39:37
阅读次数:
146
block有一个非常经典的操作就是控制器之间的传值: 假如说A向B传值是顺传,B向A传值是逆传 A->B顺传:仅仅须要重写prepareForSegue方法,在内部获取到B控制器。而且给B控制器内部的属性赋值就可以 B->A逆传: 1、首先要再B控制器中定义一个block,方法名一般以类名加Bloc ...
分类:
其他好文 时间:
2017-05-03 11:41:04
阅读次数:
197
在iOS中,UIButton、UIImage等UIView之所以能够显示在屏幕上,是因为其内部有一个图层(CALayer)。通过UIView的layer属性可以访问这个图层:@property(nonatomic,readonly,retain)CALayer*layer;当UIView需要显示到屏幕上时,会调用drawRect:方法进行绘图,并且会将所有内容绘..
分类:
其他好文 时间:
2017-04-30 23:04:32
阅读次数:
216
#import <UIKit/UIKit.h> @interface XGGesTuresView : UIView //左下角播放按钮 @property (nonatomic ,strong)UIButton * leftplayerbutton; //最小时间 @property (nonat ...
分类:
移动开发 时间:
2017-04-27 15:34:58
阅读次数:
282
UIApplication简介: 利用UIApplication对象能进行一些应用级别的操作。 设置应用程序图标右上角的红色提醒数字 @property(nonatomic) NSInteger applicationIconBadgeNumber; //代码实现和效果 UIApplication ...
分类:
移动开发 时间:
2017-04-25 13:24:52
阅读次数:
332
1.上拉刷新 定义一些属性: 1.是否正在刷新,2.进度,3.scrollview,4.刷新操作block,5.子控件 初始化方法 在移入父控件的方法中做操作 willMoveToSuperview,didMoveToSuperview 重写scrollview的set方法,添加kvo监听滑动 监听 ...
分类:
其他好文 时间:
2017-04-23 18:11:56
阅读次数:
238
#import "HMViewController.h" #import "HMPerson.h" @interface HMViewController () @property (nonatomic, strong) HMPerson *p; @end @implementation HMVie... ...
分类:
移动开发 时间:
2017-04-23 16:54:32
阅读次数:
196