上一页 1 ··· 6 7 8 9 10 11 12 13 14 下一页
摘要: How are you setting the images for the differentUIControlStateson the button? Are you setting a background image forUIControlStateHighlightedas well asUIControlStateSelected?UIImage *someImage = [UIImage imageNamed:@"SomeResource.png"];[button setBackgroundImage:someImage forState:UIContro 阅读全文
posted @ 2013-11-22 17:27 有妄想症的猫zz 阅读(10870) 评论(1) 推荐(0) 编辑
摘要: #import ...CABasicAnimation *rotationAni = [CABasicAnimation animationWithKeyPath:@"transform.rotation.z"];rotationAni.toValue = [NSNumber numberWithFloat:M_PI*2];rotationAni.duration = 0.5;rotationAni.cumulative = YES;rotationAni.repeatCount = 10000;[indicatorView.layer addAnimation:rotat 阅读全文
posted @ 2013-11-22 16:25 有妄想症的猫zz 阅读(1370) 评论(0) 推荐(0) 编辑
摘要: NSURL *url = nil; if ([[[UIDevice currentDevice] systemVersion] intValue] >= 7.0) { //iOS7 使用旧的网址跳转到 App Store 是一个 blank 页,所以判断下设备系统版本,如果是iOS7之后的,则跳转到 App 的详情页 url = [NSURL URLWithString:[NSString stringWithFormat:@"https://itunes.apple.com/cn/app/id%@?mt=8", appId]]; }else{ ... 阅读全文
posted @ 2013-11-15 14:25 有妄想症的猫zz 阅读(3127) 评论(0) 推荐(0) 编辑
摘要: 原帖链接:http://stackoverflow.com/a/9063469首先确定下项目的 Build Settings 是否已经设置过宏定义 DEBUG,如何看呢?点击 Build Settings ,然后在搜索框里输入‘macros’如果已经设置过,在 Preprocessor Macros 的 Debug 后面会有 DEBUG=1,如果没有,就手动设置下。接下来就可以这样做了#ifdef DEBUG //do sth.#else //do sth.#endifhttp://stackoverflow.com/a/9063682一般Apple已经为我们设置好了 DEBUG ... 阅读全文
posted @ 2013-11-15 13:46 有妄想症的猫zz 阅读(26174) 评论(0) 推荐(1) 编辑
摘要: http://m.freemyapps.com/share/url/516b7a9e 阅读全文
posted @ 2013-11-12 14:36 有妄想症的猫zz 阅读(253) 评论(0) 推荐(0) 编辑
摘要: 转自:http://www.open-open.com/lib/view/open1332904495999.html 阅读全文
posted @ 2013-11-08 18:13 有妄想症的猫zz 阅读(123) 评论(0) 推荐(0) 编辑
摘要: 转自:http://blog.csdn.net/cjopengler/article/details/7045638anchor point 究竟是怎么回事? 之所以造成不容易理解的是因为我们平时看待一个图片是 以图片的中心点 这一个维度来决定图片的位置的。而在cocos2d中决定一个 图片的位置是由两个维度 一个是 position 也就是图片的中心点 另外一个是anchor point。只要我们搞清楚他们的关系,自然就迎刃而解。他们的关系是这样的:actualPosition.x = position.x + width*(0.5 - anchor_point.x);acturalPosi 阅读全文
posted @ 2013-11-08 13:03 有妄想症的猫zz 阅读(350) 评论(0) 推荐(0) 编辑
摘要: 将swf文件拖进浏览器即可。 阅读全文
posted @ 2013-11-06 17:14 有妄想症的猫zz 阅读(344) 评论(0) 推荐(0) 编辑
摘要: stackoverflow两种办法,一是使用比较成熟的svn客户端,二是使用终端。以下为终端方法:假设已经通过Xcode->Preferences->Accounts将repository: http://myserver.me.com/svn/ 添加到Xcode中。创建一个新项目:$HOME/IOS/Projects/MyProject关闭项目,为了避免对svn有影响,可能需要完全退出Xcode打开终端,并进入到项目目录cd $HOME/IOS/Projects把项目添加到svn上svn import-m "New Import"MyProject/ http 阅读全文
posted @ 2013-11-06 15:41 有妄想症的猫zz 阅读(9100) 评论(0) 推荐(0) 编辑
摘要: #!/bin/shSHELL_PATH=$(cd "$(dirname "$0")";pwd)echo $SHELL_PATHcd "$SHELL_PATH"CLASSPATH=./compileAPK.jar:./log4j-1.2.15.jar:./commons-beanutils-1.8.3.jar:./commons-codec-1.6.jar:./commons-collections-3.2.jar:./commons-lang-2.5.jar:./commons-logging-1.1.3.jar:./httpclie 阅读全文
posted @ 2013-10-31 14:26 有妄想症的猫zz 阅读(3160) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 13 14 下一页