上一页 1 ··· 3 4 5 6 7 8 9 下一页
摘要: 在上架App之前想要 真机测试的同学 请查看 iOS- 最全的真机测试教程 里面包含怎么让多台电脑同时 上架App和同时真机调试。P12文件的使用详解 准备 开发者账号 完工的项目 开发者账号 完工的项目 上架步骤 一、创建App ID 二、创建证书请求文件 (CSR文件) 三、创建发布证书 (CE 阅读全文
posted @ 2016-08-01 10:18 o.0...w 阅读(307) 评论(0) 推荐(0)
摘要: UIImage *supermanImage = [UIImage imageNamed:@"superman.png"]; UIImage *moneyImage = [UIImage imageNamed:@"money.png"]; CGSize supermanSize = [supermanImage size]; CGSize moneySize... 阅读全文
posted @ 2016-07-21 11:01 o.0...w 阅读(106) 评论(0) 推荐(0)
摘要: // 下面方法,第一个参数表示区域大小。第二个参数表示是否是非透明的。如果需要显示半透明效果,需要传NO,否则传YES。第三个参数就是屏幕分辨率 阅读全文
posted @ 2016-07-20 16:40 o.0...w 阅读(299) 评论(0) 推荐(0)
摘要: + (instancetype)sharedClient { static APIClient *_sharedClient = nil; static dispatch_once_t onceToken; NSString * APIBaseURLString = [NSString stringWithFormat:SERVER_INTERFACES, SERVE... 阅读全文
posted @ 2016-07-18 14:53 o.0...w 阅读(145) 评论(0) 推荐(0)
摘要: 在iOS中可以很容易的开发出绚丽的界面效果,一方面得益于成功系统的设计,另一方面得益于它强大的开发框架。今天我们将围绕iOS中两大图形、图像绘图框架进行介绍:Quartz 2D绘制2D图形和Core Image中强大的滤镜功能。 Quartz 2D 基本图形绘制 视图刷新 其他图形上下文 Core 阅读全文
posted @ 2016-05-08 15:42 o.0...w 阅读(704) 评论(0) 推荐(0)
摘要: #import "ViewController.h" #import @interface ViewController () @property (nonatomic, strong) AVAudioPlayer *player; @end @implementation ViewController - (void)viewDidLoad { [super viewDidLoa... 阅读全文
posted @ 2016-04-30 20:32 o.0...w 阅读(165) 评论(0) 推荐(0)
摘要: #import "PlayAudioTool.h" #import //定义一个全局的缓存池变量, 因为音效它会一直添加到内存中,当继续添加音效时, 内存储存不了,此时就会将内存底部的一个音效移除, 然后添加新的, 虽然这个能够存储音效, 但是对与内存而言,任然是饱满, 所以我们这个就定义一个缓存池, 第一是不让相同的音效重复加载到内存中区,第二是当内存发出内存警告时, 我们可以在app... 阅读全文
posted @ 2016-04-30 20:30 o.0...w 阅读(232) 评论(0) 推荐(0)
摘要: #import "ViewController.h" #import @interface ViewController () @end @implementation ViewController - (void)viewDidLoad { [super viewDidLoad]; // Do any additional setup after loading t... 阅读全文
posted @ 2016-04-30 17:06 o.0...w 阅读(180) 评论(0) 推荐(0)
摘要: #import "ViewController.h" #import @interface ViewController () @property(nonatomic ,strong) AVCaptureFileOutput * outPut; @property(nonatomic ,strong)AVCaptureSession * session; @end @impleme... 阅读全文
posted @ 2016-04-30 16:26 o.0...w 阅读(137) 评论(0) 推荐(0)
摘要: #import "ViewController.h" #import @interface ViewController () @property (weak, nonatomic) IBOutlet UIImageView *imageView; @property(nonatomic ,strong)AVAssetImageGenerator * generatorl; @end ... 阅读全文
posted @ 2016-04-30 15:31 o.0...w 阅读(344) 评论(0) 推荐(0)
上一页 1 ··· 3 4 5 6 7 8 9 下一页