iOS 蓝牙 技术

摘要: // //  ViewController.m //  08-蓝牙 GameKit // //  Created by Romeo on 15/9/26. //  Copyright © 2015年 itheima. All rights reserved. //   #import "ViewCo 阅读全文
posted @ 2016-03-14 17:08 崔付亮 阅读(141) 评论(0) 推荐(0)

iOS人脸识别

摘要: // //  ViewController.m //  02-人脸识别 // //  Created by Romeo on 15/9/25. //  Copyright © 2015年 itheima. All rights reserved. //   #import "ViewControll 阅读全文
posted @ 2016-03-14 17:06 崔付亮 阅读(673) 评论(0) 推荐(0)

iOS 指纹识别

摘要: - (void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event {     //1. 判断系统版本     if ([UIDevice currentDevice].systemVersion.floatValu 阅读全文
posted @ 2016-03-14 17:05 崔付亮 阅读(246) 评论(0) 推荐(0)

iOS极光推送进一部使用(重点)

摘要: 一.设置标签alias(userId 单个推送)和别名tags(行业分类 多个推送) 覆盖逻辑 而不是新增逻辑 block回调 + (void) setTags:(NSSet *)tags alias:(NSString *)alias fetchCompletionHandle:(void (^) 阅读全文
posted @ 2016-03-14 16:35 崔付亮 阅读(2364) 评论(0) 推荐(0)

极光推送的初步配置及其使用

摘要: 在对 JPush iOS 开发环境进行测试前,请确保 3 个统一: 在对 JPush iOS 生产环境进行测试前,请确保 3 个统一: 根据实际情况完善 App ID 信息并提交,注意此处需要指定具体的 Bundle ID 不要使用通配符。 在 JPush 管理 Portal 上,针对某应用程序,上 阅读全文
posted @ 2016-03-14 16:34 崔付亮 阅读(2017) 评论(0) 推荐(0)

iOS 加急审核

摘要: 加急审核的链接 https://developer.apple.com/appstore/contact/appreviewteam/index.html 注: 信息的填写没有太多要求...但原因一定写上崩溃...经过n次尝试的结果.最慢2个工作日. 千万不要说什么急用之类没用的话..就说那个界面出 阅读全文
posted @ 2016-03-08 14:04 崔付亮 阅读(174) 评论(0) 推荐(1)

iOS 打测试包

摘要: iOS开发中,怎么打包为ipa格式的软件包以及怎么安装到手机终端上。 (我的开发环境为Xcode6.1.1 ) 作为个人开发者(当然我的开发者帐号为个人开发者帐号,而不是企业开发者帐号),对于自己来说,我们只需要真机调试就可以将应用安装到自己的手机上;如果你在发布前想给更多的测试或朋友使用你的APP 阅读全文
posted @ 2016-03-08 14:00 崔付亮 阅读(1637) 评论(0) 推荐(1)

iOS 上传图片到服务器 最简单的实现方式

摘要: //在调用相机中获取图片 [manager POST:naurl parameters:requestParms constructingBodyWithBlock:^(id<AFMultipartFormData> formData) { // 设置时间格式(给个时间便于区分) NSDateFor 阅读全文
posted @ 2016-03-08 13:59 崔付亮 阅读(1212) 评论(0) 推荐(1)

iOS 最常用的第三方框架

摘要: Masonry 用处:添加约束使用 MJExtension 用处:数组、字典、plist等与模型之间的转换 MJRefresh 用处:给scrollView类添加下拉刷新和上拉加载 SDCycleScrollView 用处:图片循环滚动 ZLPhotoLib(图片浏览,多选) SBPhotoBrow 阅读全文
posted @ 2016-03-08 13:58 崔付亮 阅读(293) 评论(0) 推荐(1)

iOS 录音,播放,转码MP3,上传语音文件

摘要: //语音文件 AVAudioRecorder *recorder; NSTimer *timer; NSString *urlPlay; BOOL isPlay; #pragma mark ========= 语音文件 ==========- (void)audio { AVAudioSession 阅读全文
posted @ 2016-03-08 13:57 崔付亮 阅读(1512) 评论(0) 推荐(1)