XCode4.6.2编译安装到iOS7
Posted by Jimney Lee at 2013-10-21 with tags ios7, xcode
由于老的工程使用XCode5.0编译到iOS7设备上,总会有莫名其妙的问题,所以一直想法设法仍然通过XCode4.6.2编译安装。经过测试,完美解决了问题。
简要步骤:
1、下载最新的XCode5.x的dmg安装文件,安装后在应用程序目录单独存放如下图:
2 、右击工程文件,用XCode5打开,并运行安装到您的设备上
3、右击工程文件,用XCode4.6.2开发,并运行
解决图片缓存问题
Posted by Jimney Lee at 2013-10-07 with tags ios7, nimbus, AFNetworking
今天编译nimbus项目报错:ADDRESPONSE - not adding TO DISK OR MEMORY
NSURLRequest *request = [NSURLRequest requestWithURL:url
cachePolicy:NSURLCacheStorageNotAllowed
timeoutIn
解决iOS7下,NSURLRequest设置NSURLCacheStorageNotAllowed的缓存问题
Posted by Jimney Lee at 2013-10-05 with tags ios7, NSURLRequest, cache
NSURLRequest *request = [NSURLRequest requestWithURL:url cachePolicy:NSURLCacheStorageNotAllowed
timeoutInterval:20.f];
最近发现已发布的app的天气每天获取的都是以前某一天的数据,但是之前没有这个情况,
,仍然缓存旧数据的问题。XCode编译iphone opencv2出错
Posted by Jimney Lee at 2013-03-12 with tags opencv2, iphone, xcode
今天发现使用新的opencv2版本的方法显示一张图片时,代码如下:
#include
#include
#include
using namespace cv;
using namespace std;
int main(int argc, const char * argv[])
{
Mat image;
image = imread("./baby.jpg");
if
备份:版本管理过程中递归删除.svn和.git目录的命令
Posted by Jimney Lee at 2012-12-20 with tags scm, git, svn, hightlight
step1:
$ find . -type d -name ".svn" | xargs rm -rf
step2:
$ find . -name .git -print0 | xargs -0 rm -rf
MacOS Terminal终端配置ls和vi颜色高亮
Posted by Jimney Lee at 2012-12-19 with tags macos, Terminal, hightlight
step1:
$ alias ls='ls -G'
step2:
$ vi .bash_profile
export PS1='\e[0:35m⌘\e[m \e[0:36m\w/\e[m \e[0:33m`git branch 2> /dev/null | g rep -e ^* | sed -E s/^\\\\\*\ \(.+\)$/\(\\\\\1\)\ /`