ios开发中会用到的工具

UIImage加载图片节省内存的方法

不用[UIImage imageNamed:@"a.png"],用 [UIImage imageWithContentsOfFile:[[[NSBundle mainBundle] resourcePath] stringByAppendingPathComponent:@"a.png"]];

 

改变Xcode自动生成的公司名

要修改默认的 _MyCompanyName_的话

需要打开Terminal(终端) 输入:

defaults write com.apple.Xcode PBXCustomTemplateMacroDefinitions '{"ORGANIZATIONNAME" = "xxxx"}'

xxx为公司名。

 

json格式化的网站

http://jsonformatter.curiousconcept.com/#jsonformatter

http://jsonviewer.stack.hu/

 

你可能感兴趣的:(ios开发中会用到的工具)