摘要: 1、git.oschina.net上新建私有项目CocoaPodsTest,拷贝git路径留作下一步使用2、本次mac上新建xcode项目CocoaPodsTest3、在命令行cd到项目根路径/Users/cyber/Documents/Projects/CocoaPodsTest执行以下命令git... 阅读全文
posted @ 2015-02-26 23:46 wolfcamel 阅读(884) 评论(0) 推荐(0) 编辑
摘要: http://www.cnblogs.com/yingkong1987/p/3157692.htmlhttp://blog.sina.com.cn/s/blog_a573f7990101gi4k.htmlhttp://stackoverflow.com/questions/3609084/ipad-... 阅读全文
posted @ 2015-02-26 23:45 wolfcamel 阅读(111) 评论(0) 推荐(0) 编辑
摘要: BMKLocationService对象实际使用时是单实例的,如果有多个VC实例化此对象并用作定位服务,则位置更新调用delegate时总会调用首个实例对象设置的delegate,不会多个VC并行使用 阅读全文
posted @ 2015-02-26 23:44 wolfcamel 阅读(284) 评论(0) 推荐(0) 编辑
摘要: 参考链接:http://www.tairan.com/archives/194http://www.tairan.com/archives/240https://developer.apple.com/library/ios/documentation/NetworkingInternet/Conc... 阅读全文
posted @ 2015-02-26 23:43 wolfcamel 阅读(1356) 评论(0) 推荐(0) 编辑
摘要: 上传本地库到远程git1、先在git.oschina.net上创建一个project2、在本地目录调整好doc src目录并存放好项目文档3、命令行工具cd到项目根目录,并git init4、执行git add . 把当前目录下所有文件加入版本控制5、执行git commit -m "msg"6、执... 阅读全文
posted @ 2015-02-26 23:42 wolfcamel 阅读(171) 评论(0) 推荐(0) 编辑
摘要: solr4.5配置tomcat7http://blog.csdn.net/chengzhengliang/article/details/14123889Solr使用入门指南http://blog.csdn.net/liuzhenwen/article/details/4060922使用Apache... 阅读全文
posted @ 2015-02-26 23:39 wolfcamel 阅读(382) 评论(0) 推荐(0) 编辑
摘要: 简介此组件对位置管理及位置刷新进行了多线程封装,支持多线程并行调用,单例模式方便最终调用及管理,其中位置变动监控支持链条式监听器,当位置有更新时所有监听器均会顺序触发。代码架构代码由三部分组成,一个Operation基类、一个位置相关请求Opertion类、一个单例位置管理器。Operation基类... 阅读全文
posted @ 2015-02-26 23:36 wolfcamel 阅读(225) 评论(0) 推荐(0) 编辑
摘要: 1、迁移设备主要做开发者证书、私钥、公钥的转移,可把正常使用的Mac上开发者证书导出,在keychain工具中选择两项一起导出保存为.p12格式,developer和distribution分别导出并保存2、将上述导出的p12证书发送到新Mac机上双击安装3、在xcode的Preferences页面... 阅读全文
posted @ 2015-02-26 23:35 wolfcamel 阅读(162) 评论(0) 推荐(0) 编辑
摘要: For iTunes 11:1、open your iTunes "Side Bar" by going to View -> Show Side Bar2、drag the mobileprovision and ipa files to your iTunes "Apps" under LIBR... 阅读全文
posted @ 2015-02-26 23:34 wolfcamel 阅读(159) 评论(0) 推荐(0) 编辑
摘要: 开始之前,首先回顾一下iOS7初体验(1)——第一个应用程序HelloWorld中的一张图,如下所示:本文分享一下Images.xcassets的体验~_~1. 打开此前使用过的HelloWorld项目,然后单击并打开导航区域中的Images.xcassets,看看都有些什么东东:]:2. 在图中可... 阅读全文
posted @ 2015-02-26 23:33 wolfcamel 阅读(192) 评论(0) 推荐(0) 编辑
摘要: 1、如果真机添加到本地xcode上,则在window-》orgnazier-》Devices-》对应设备上点击右下角的“Add to member center”添加到开发中心2、如果是客户的iphone需要远程添加,需要获取客户iphone的UDID信息并添加到member center中,UDI... 阅读全文
posted @ 2015-02-26 23:32 wolfcamel 阅读(173) 评论(0) 推荐(0) 编辑
摘要: 三种查看iPhone和iPad的UDID的简单方法在开发iPhone和iPad软件的时候,要使用UDID来做真机测试,那么如何查看iPhone或者iPad的UDID呢?下面icech介绍三种最简单的查看UDID的方法,供大家参考!icech使用的是iPod Touch抓屏,不过方法都是一样的。1、使... 阅读全文
posted @ 2015-02-26 23:30 wolfcamel 阅读(8406) 评论(0) 推荐(0) 编辑
摘要: 以sofu580 1.0.5版本发布为例,当本地调测都通过且push到git后,可把git上代码打标签,用户版本回溯记录。apple-MacB:soufu580-app apple$ git tag -a v1.0.5apple-MacB:soufu580-app apple$apple-MacB:... 阅读全文
posted @ 2015-02-26 23:29 wolfcamel 阅读(120) 评论(0) 推荐(0) 编辑
摘要: 命令行git pull产生冲突后,手工编辑冲突文件并保存,之后再执行git add -u命令添加变化的文件,再commit并push即可。具体参考如下文章http://stackoverflow.com/questions/12192649/git-help-userinterfacestate-x... 阅读全文
posted @ 2015-02-26 23:28 wolfcamel 阅读(334) 评论(0) 推荐(0) 编辑
摘要: 近来多了几本大型互联网应用架构设计方面的书,要写下读书笔记,先记个任务,3月份完成以下4本书的读书笔记:1、大型互联网架构设计:原理及案例2、大型分布式系统及java中间件3、浪潮之巅4、IT项目经理成长手记 阅读全文
posted @ 2015-02-26 23:21 wolfcamel 阅读(116) 评论(0) 推荐(0) 编辑
摘要: 原来5年前就已注册过,5年前就该做些总结记录的,好在只要开始行动,一切都不晚! 阅读全文
posted @ 2015-02-26 23:14 wolfcamel 阅读(71) 评论(0) 推荐(0) 编辑