文章列表
# 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 output to the framework.
# The following line create it in the root folder of the current project.
...
git config --global url."https://github.com/".insteadOf git@github.com:
git config --global url."https://".insteadOf git://
1、ifconifg.me/all
2、http://ifconfig.jd-app.com/
3、http://ip-api.com/
4、http://icanhazip.com/
终极解决思路:在使用了IDFA的前提下,让审核人员看到除iAD之外的广告!
分析如下:
最近这类的被拒,特别多,因为Apple修改了审核标准,IDFA只能用于广告服务。
出现这种情况的原因如下:
1 使用了第三方的库,第三方的库根据IDFA进行跟踪用户,同时APP没有加载广告。
2 使用了第三方的库,第三方的库根据IDFA进行跟踪用户,同时加载了iAD广告。
3 同时使用了iAD+ADMOB等广告。
被拒的情况大概就是上面三种,其他的不会有问题。
对应的解决方法:
第一种情况解决方法:
需要把和IDFA相关的代码和接口去除,因为IDFA只可以用于广告服务。
第二种情况解决方法:
iAD ...
一、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 TS (32 bit)
在php.ini的末尾添加如下内容:
[Xdebug]
zend_extension="D:/PHP/ext/php_xdebug-2.1.0-5.3-vc6.dll"
xdebug.auto_trace=1
xdebug.show_exception_tra ...
安装
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
使用CocoaPods的镜像索引
pod repo remove master
pod repo add master https://gitcafe.com/akuandev/Specs.git
pod repo update ...
一、代码撤消与回退
1、回退已提交的代码
git reset --hard HEAD
回退整套代码到最近一次提后的状态。
git reset --hard <hashcode>
回退代码到指定的某次提交状态。
2、撤消已暂存的文件
git reset HEAD <文件路径>
3、撤消已修改的文件
git checkout -- <文件路径>
二、代码添加与提交
1、添加代码
git add .
2、提交代码
git commit -m “Comment change”
三、远程仓库同步
1、分支克隆
git clone [url]
2、查看分支
g ...
一、创建.lldbinit
command alias reveal_load expr (void*)dlopen((char*)[(NSString*)[(NSBundle*)[NSBundle mainBundle] pathForResource:@"libReveal" ofType:@"dylib"] cStringUsingEncoding:0x4], 0x2);
command alias reveal_start expr (void)[(NSNotificationCenter*)[NSNotificationCenter def ...
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 -static -o ../libnew-armv7.a *.o
5.合并静态库
$ lipo -create libnew-armv76.a libi386.a -output AlipayRsaLib.a
转 ...
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, but encrypted with a passphrase
openssl genrsa -des3 -out mykey.pem 1024
2、How do I generate a public RSA ...