1、播放图片集 2.2 创建 Objective C @property (nonatomic, strong) UIImageView playImageView; // 创建播放视图 self.playImageView = [[UIImageView alloc] initWithFrame: ...
分类:
其他好文 时间:
2018-07-27 01:18:34
阅读次数:
193
property在使用的时候需要在其前面加上@符号,需要将其写在类的头文件中 当在定义一个对象的属性变量时,例如定义一个Person类中的name属性,可定义为: @property (nonatomic, strong) NSString *name; 当在定义C语言的基础变量时,可定义为: @p ...
分类:
其他好文 时间:
2018-07-26 13:26:04
阅读次数:
144
#import "BuildClientVC.h" @interface BuildClientVC () // 被扫描的蓝牙设备,比如我们上面所说的用我们的手机连接小米手环,这时候小米手环就是外设。 @property (nonatomic,strong) CBPeripheral * perip ...
分类:
移动开发 时间:
2018-07-14 13:01:44
阅读次数:
258
1 #import "ViewController.h" 2 3 @interface ViewController () 4 /** 注释 */ 5 @property (nonatomic, strong) NSMutableData *resultData; 6 @end 7 8 @imple... ...
分类:
Web程序 时间:
2018-07-10 21:28:11
阅读次数:
197
1 #import "ViewController.h" 2 3 @interface ViewController () 4 5 /** 6 图片 7 */ 8 @property (weak, nonatomic) IBOutlet UIImageView *imageView; 9 10 @e... ...
分类:
编程语言 时间:
2018-07-04 13:49:23
阅读次数:
208
一.介绍CMPedometer是苹果8.0推出的,之前的只能从物理引擎的框架去做,很是尴尬。而且不支持32位的系统,意味者iphone5和以后的型号都不支持这个。现在普遍好多了,现在的公司一般最低适配到8.0或者直接10.0系统,再也不用担心这个问题了。二.使用先声明一个属性,不然他容易泄露,苹果的好多框架都是这样的,不能直接使用,得千万注意1.@property(nonatomic,strong
分类:
移动开发 时间:
2018-07-02 11:47:56
阅读次数:
179
@synthesize的作用是生成实例变量,并用这个实例变量生成对应的getter,setter,当声明一个属性,并且没有重写getter,setter方法时,编译器会自动生成实例变量及getter、setter,例如声明 @property (nonatomic, assign) NSIntege ...
分类:
其他好文 时间:
2018-06-06 15:57:17
阅读次数:
176
@property (strong, nonatomic) IBOutlet UIButton *button; //圆形//先设置按钮宽和高相等button.layer.cornerRadius = button.frame.size.width/2;button.layer.masksToBou ...
分类:
移动开发 时间:
2018-06-01 22:20:54
阅读次数:
227
浅复制就是指针拷贝;深复制就是内容拷贝。 关于控件的继承关系: (1)所有的控件都继承自 UIView。 (2)能监听事件的都是先继承自 UIControl,UIControl 再继承自 UIView。比如 UIButton。 (3)能整体滑动的都是继承自 UIScrollView,UIScroll ...
分类:
移动开发 时间:
2018-05-23 20:47:19
阅读次数:
237
如果打回来了,就自认倒霉吧 制作无声音频。 @interface AppDelegate () { NSInteger count; } @property(strong, nonatomic)NSTimer *mTimer; @property(assign, nonatomic)UIBackgr ...
分类:
移动开发 时间:
2018-05-10 14:24:51
阅读次数:
264