- 博客(11)
- 收藏
- 关注
原创 framework生成
# Sets the target folders and the final framework product. # 如果工程名称和Framework的Target名称不一样的话,要自定义FMKNAME # 例如: FMK_NAME = "MyFramework" FMK_NAME=${PROJECT_NAME} # Install dir will be the final outp...
2015-08-21 09:04:26
188
原创 Github使用https协议进行下载
git config --global url."https://github.com/".insteadOf git@github.com: git config --global url."https://".insteadOf git://
2015-05-21 21:09:55
808
原创 外网IP地址
1、ifconifg.me/all 2、http://ifconfig.jd-app.com/ 3、http://ip-api.com/ 4、http://icanhazip.com/
2014-12-25 10:03:37
280
原创 Advertising Identifier审核被拒解决方法
终极解决思路:在使用了IDFA的前提下,让审核人员看到除iAD之外的广告! 分析如下: 最近这类的被拒,特别多,因为Apple修改了审核标准,IDFA只能用于广告服务。 出现这种情况的原因如下: 1 使用了第三方的库,第三方的库根据IDFA进行跟踪用户,同时APP没有加载广告。 2 使用了第三方的库,第三方的库根据IDFA进行跟踪用户,同时加载了iAD广告。 3 同时使用了iA...
2014-07-17 18:51:26
641
原创 PHP环境配置
一、PHP安装 路径:http://windows.php.net/downloads/releases/archives/ 版本:php-5.3.5-Win32-VC6-x86.zip 二、配置Xdebug 下载支持5.3版本的Xdebug(Xdebug 2.1.0) PHP 5.3 VC6 [color=red]TS[/color] (32 bit) 在php.ini的末尾添加...
2014-07-15 11:31:01
94
原创 CocoaPods使用
安装 sudo gem install cocoapods pod setup 升级gem sudo gem update --system 将官方的ruby源替换成国内淘宝的源 gem sources --remove https://rubygems.org/ gem sources -a http://ruby.taobao.org/ gem sources -l 使用Co...
2014-05-31 16:11:52
105
原创 Git版本管理
一、代码撤消与回退 1、回退已提交的代码 git reset --hard HEAD 回退整套代码到最近一次提后的状态。 git reset --hard 回退代码到指定的某次提交状态。 2、撤消已暂存的文件 git reset HEAD 3、撤消已修改的文件 git checkout -- 二、代码添加与提交 1、添加代码 git add . 2、...
2014-05-30 17:02:03
86
原创 集成Reveal
一、创建.lldbinit [code="shell"] command alias reveal_load expr (void*)dlopen((char*)[(NSString*)[(NSBundle*)[NSBundle mainBundle] pathForResource:@"libReveal" ofType:@"dylib"] cStringUsingEncoding:0x4]...
2014-05-10 12:59:38
104
原创 iOS 静态库
1.查看文件的架构有哪些 $ lipo -info AlipayRsaLib.a 2.将armv7解压出来 lipo AlipayRsaLib.a -thin armv7 -output AlipayRsaLib-armv7.a 3.将静态库中的文件解压 $ ar -x ../AlipayRsaLib-armv7.a 4.合并完后进行打包.o文件了 $ libtool -...
2014-04-01 14:44:36
81
原创 openssl常用命令
1、How do I generate an RSA key? # default 512-bit key, sent to standard output openssl genrsa # 1024-bit key, saved to file named mykey.pem openssl genrsa -out mykey.pem 1024 # same as above,...
2014-03-11 11:32:20
192
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人