//声明对象@property (nonatomic,strong) UIPageControl *pagecontrol; //初始化 self.pagecontrol = [[UIPageControl alloc] init]; self.pagecontrol.backgroundColor ...
分类:
其他好文 时间:
2017-04-08 13:02:32
阅读次数:
219
02-图片裁剪 图片裁切 图片截屏 04-图片截取 05-图片擦除 ...
分类:
其他好文 时间:
2017-04-07 13:37:32
阅读次数:
247
// ViewController.m // 08-模仿UIImageView #import "ViewController.h" #import "XMGImageView.h" @interface ViewController () @property (nonatomic, strong)... ...
分类:
其他好文 时间:
2017-04-07 12:28:15
阅读次数:
259
UIButton *btn = // create the button objc_setAssociatedObject(btn, "firstObject", obj, OBJC_ASSOCIATION_RETAIN_NONATOMIC); [btn addTarget:self action:... ...
分类:
其他好文 时间:
2017-04-01 12:45:38
阅读次数:
148
一、多线程安全隐患 资源共享 一块资源可能会被多个线程共享,也就是多个线程可能会访问到一块资源 比如多个线程访问同一个对象,同一个变量,同一个文件。 当多线程访问同一块资源的时候,很容易引发数据错乱和数据安全问题二、原子和非原子属性 1>OC 在定义属性的时候有nonatomic和atomic两种选 ...
分类:
移动开发 时间:
2017-03-30 17:03:33
阅读次数:
245
// ViewController.m // 12-掌握-webView #import "ViewController.h" @interface ViewController () @property (weak, nonatomic) IBOutlet UIWebView *webView; ... ...
分类:
Web程序 时间:
2017-03-24 17:30:13
阅读次数:
219
// 监听slider滑动 - (IBAction)valueChnage:(UISlider *)sender; @property (weak, nonatomic) IBOutlet NJView *circleView; @end @implementation NJViewControll... ...
分类:
移动开发 时间:
2017-03-21 23:01:39
阅读次数:
1025
// ViewController.m // 06-掌握-多图片下载 #import "ViewController.h" #import "XMGApp.h" @interface ViewController () /** 所有数据 */ @property (nonatomic, strong... ...
分类:
其他好文 时间:
2017-03-17 16:13:52
阅读次数:
254
原文出自:http://www.cocoachina.com/ios/20170306/18837.html ,为了方便记忆,转载,如原作者不同意转载,邮件通知,立即删除 前言: WebRTC,名称源自网页实时通信(Web Real-Time Communication)的缩写,简而言之它是一个支持 ...
分类:
移动开发 时间:
2017-03-09 13:06:31
阅读次数:
436
// XMGChatingViewController.m // 07-聊天布局 #import "XMGChatingViewController.h" #import "XMGMessage.h" #import "XMGMessageCell.h" //#import "XMGMeCell.h... ...
分类:
其他好文 时间:
2017-03-06 13:41:05
阅读次数:
242