ios
cooper_ma
where is your dream depends on where are you stand.
展开
-
iOS--01--Hello World
刚买了一个mac book pro 13.3‘, 作为一个developer,闲着无聊,学学ios,见了同学卖弄一下自己开发的小程序。 万事开头Hello World 1 安装Xcode , xcode 继承了全部开发所需。 2 打开Xcode 3 IOS --》 Application 4 Utility Application 5 Product Name 不要勾选下面原创 2012-12-31 16:55:03 · 393 阅读 · 0 评论 -
iOS--03 系列场景切换方式
//触摸事件 - 当手指从屏幕抬起时调用的方法-Himi -(void) ccTouchesEnded:(NSSet *)touches withEvent:(UIEvent *)event { CCScene* scenec = [OtherLayout scene]; //部落格------ //CCTransitionTurnOffTi原创 2013-03-08 16:10:54 · 550 阅读 · 0 评论 -
iOS--02 图标的标准
图标是IOS程序包所必需的组成部分。如果你没有提供程序所需的各种尺寸的图标,程序上传发布时可能会无法通过验证。IOS程序为兼顾不同的应用场景,定义了多个不同规格的图标,并以不同的命名区分: IOS图标尺寸一览 iPhone专用程序: 图标名称 大小 圆角 用途 必需 Icon.png 57 X 57 10px 用于程序商店和在iPhone原创 2013-01-06 16:07:22 · 370 阅读 · 0 评论 -
iOS--04 IOS一系列字体
CCLabelTTF *myLabel = [CCLabelTTF labelWithString:@"AppleGothic" fontName:@"AppleGothic" fontSize:20]; myLabel.position=ccp(70, 50); [self addChild:myLabel]; CCLabelTTF *myLabel2 = [CCLabelTT原创 2013-03-08 16:32:11 · 418 阅读 · 0 评论 -
iOS -- 05 开发者证书流程
01 : 开发者注册--付费99$ https://developer.apple.com/programs/ios/ 付费需要 2 business days 付费完成后--收到确认邮件 02 : 生成钥匙签名 Application -- 钥匙串访问 -- 证书助手 -- 从证书颁发机构请求证书 -- 填写信息 -- 证书保存在磁盘 03原创 2013-03-15 12:55:49 · 856 阅读 · 0 评论