plist文件里面添加AppDelegate://显示状态栏 [[UIApplication sharedApplication]setStatusBarHidden:NO]; //将状态栏颜色设为白色 [[UIApplication sharedApplication] setS...
分类:
移动开发 时间:
2015-06-04 13:21:49
阅读次数:
123
mac os 禁止apache httpd自动启动博客分类:计算机使用mac os不像linux有/etc/init.d/rc.local以及service的方式可以设置程序随机启动,而是使用plist文件管理。plist文件分布在:/System/Library/LaunchDaemons/中的最...
分类:
Web程序 时间:
2015-06-04 11:30:13
阅读次数:
160
在xcode中创建一个项目 会在supportion files 目录下 看见一个已plist后缀类型的文件,这个文件 是以 key value 存放的键 值对的值。它全名是:Property List,属性列表文件,它是一种用来存储串行化后的对象的文件。属性列表文件的扩展名为.plist,因此通常...
分类:
移动开发 时间:
2015-06-03 19:11:31
阅读次数:
129
xcode 6.3 上传应用时会出现'Missing
recommended icon file - The bundle does not contain an app icon for iPhone / iPod Touch of exactly '120x120' pixels, in .png format'。
在plist文件中 icon files添加
解决方案 :
...
分类:
移动开发 时间:
2015-06-02 17:48:52
阅读次数:
144
1、粒子效果
CCParticleSystem*sp = CCParticleSnow::create();
sp->setTexture(CCTextureCache::sharedTextureCache()->addImage("f.png"));
this->addChild(sp);
2、Plist文件
CCSpriteFrameCache::sharedSpriteFrame...
分类:
其他好文 时间:
2015-06-02 11:13:48
阅读次数:
123
1. 创建一个plist文件 NSArray *paths=NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,NSUserDomainMask,YES); NSString *path=[paths objectAtIndex:0...
分类:
其他好文 时间:
2015-06-01 20:17:59
阅读次数:
96
1.bundle app framework的形式存在。
2.plist 也可以这样查看 plutil -p /Users/ysw-uleule/Desktop/**.app/Info.plist 查看plist文件
3.lproj 目录下存放的本地化字符串。
4.配置CydiaSubstrate
sudo /opt/theos/bin/bootstrap.sh subst...
分类:
移动开发 时间:
2015-05-29 15:53:27
阅读次数:
165
环境基于XMPP模块练习。 在ios8以前,不包括ios8,socket 是不支持后台运行。且在ios7要做配置info.plist文件。 添加 Required background modes = voip; //使用soket在后台运行 //????若想要IOS7支持后台soc...
分类:
移动开发 时间:
2015-05-28 20:07:00
阅读次数:
165
app id:com.company.productapp id prefix:ABCDEFGXXX创建工程的时候,也要与APPLE开发者网站上的一一对应。工程的Bundle identifier可以在info.plist文件中修改,bundle name.安装后显示的名字为bundle displ...
分类:
移动开发 时间:
2015-05-26 21:07:56
阅读次数:
107
调用者:
只需要执行以下调用方法,以“://”为分隔符,左边就是要调用APP的地址,右边是你要传给这个APP的参数。
NSURL *url = [NSURL URLWithString:@"Ceshi001://aaaaaaa"];
[[UIApplication sharedApplication] openURL:url];
被调用者:
info.plist文件...
分类:
移动开发 时间:
2015-05-26 19:03:36
阅读次数:
124