上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 36 下一页
摘要: linux gcc 编译动态类库(.so)和静态类库(.a) 我的编译环境 ubuntu desktop 16.04 一:测试代码 测试有3个文件:AB.h,AB.c,test.c //AB.h void hello(); //AB.c #include <stdio.h> void hello() 阅读全文
posted @ 2016-05-23 18:54 cocoajin 阅读(1669) 评论(0) 推荐(0) 编辑
摘要: 最近苹果公司发布声明:自今年6月1日开始,所有提交至苹果App Store的应用申请必须要兼容面向硬件识别和网络路由的最新互联网协议--IPv6-only标准。 那么问题来了,目前的app是否支持ipv6? ,哪些需要支持ipv6? 一:测试你的app目前是否支持ipv6,如果不支持6月1以后将无法 阅读全文
posted @ 2016-05-19 13:56 cocoajin 阅读(1796) 评论(0) 推荐(0) 编辑
摘要: 智能设备 和 app 通过 BLE通讯的两种模型 模型一:设备提供数据,app 展示数据; 比如小米手环 模型二:app提供数据,设备接收; 模型与corebluetooth的对应关系; 模型一:智能设备,对应 peripheral;app对应central 模型二:智能设备作为central ; 阅读全文
posted @ 2016-04-07 17:58 cocoajin 阅读(754) 评论(0) 推荐(0) 编辑
摘要: reveal 强大的iOS UI调试工具 1: 去官网下载最新版本:1.6.3 http://revealapp.com/download/ 2: 安装到mac上,即,解压下载的包,把app拖到mac 应用程序里面; 3:下载破解补丁 百度网盘下载 适用于1.5.x版本,亲测最新版本1.6.3可用; 阅读全文
posted @ 2016-03-09 14:46 cocoajin 阅读(3122) 评论(0) 推荐(0) 编辑
摘要: 2月14日以后,由于苹果更新安全证书;会导致本机制作的所有开发者证书无效; 钥匙串里的开发者证书无法使用 解决方式: 重新下载苹果公司的安全证书,并安装 1: 先在钥匙串里搜索到老的证书,如果有,请先删除 2: 然后去下载新证书 http://developer.apple.com/certific 阅读全文
posted @ 2016-03-07 11:42 cocoajin 阅读(336) 评论(0) 推荐(0) 编辑
摘要: u盘安装ubuntu server 14.041:下载ubuntu server14的 iso镜像文件2:下载 UltraISO U盘镜像制作工具 ;3:使用Ultra iOS 将下载好的 iso系统镜像文件写入U盘; 写入方式:http://jingyan.baidu.com/article/59... 阅读全文
posted @ 2015-12-13 19:10 cocoajin 阅读(2475) 评论(0) 推荐(0) 编辑
摘要: 轻量级的数据库leveldb https://github.com/google/leveldb一:在iOS下编译leveldb终端:1: git clonehttps://github.com/google/leveldb.git2: 进入根目录 cd leveldb-master3: 编译:CX... 阅读全文
posted @ 2015-12-08 21:23 cocoajin 阅读(1536) 评论(0) 推荐(0) 编辑
摘要: iconv 文件编码相互转换示例:iconv -f utf-8 -t gbk ~/a.txt > ~/b.txt-f 从哪种格式转换-t 要转换到哪种格式a.txt要转换的文件b.txt 转换后保存的文件其他可用的参数信息:-l, --list 列举所有已知的字符集输出控制:-c 从输出中忽略无效的... 阅读全文
posted @ 2015-11-17 16:42 cocoajin 阅读(431) 评论(0) 推荐(0) 编辑
摘要: ios CoreBluetooth 警告 is being dealloc'ed while pending connection CoreBluetooth[WARNING] is being dealloc'ed while pending connection使用cb,去链接外部蓝牙设备时... 阅读全文
posted @ 2015-11-12 11:57 cocoajin 阅读(572) 评论(0) 推荐(0) 编辑
摘要: iOS 国际化多语言设置方式一: 1. 在storyboard中创建好UI,然后在 project 里面 Localizables 栏目里面,添加你需要的语言;默认是Englist; 比如这里我添加了 简体中文 2.添加完之后,原来的Main.storyboard 就会多了一个国际化的语言配置文件... 阅读全文
posted @ 2015-10-27 16:54 cocoajin 阅读(13102) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 36 下一页