摘要:
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 阅读全文
摘要:
#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 阅读全文
摘要:
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{ ... 阅读全文
摘要:
原帖链接: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 ... 阅读全文
摘要:
http://m.freemyapps.com/share/url/516b7a9e 阅读全文
摘要:
转自:http://www.open-open.com/lib/view/open1332904495999.html 阅读全文
摘要:
转自:http://blog.csdn.net/cjopengler/article/details/7045638anchor point 究竟是怎么回事? 之所以造成不容易理解的是因为我们平时看待一个图片是 以图片的中心点 这一个维度来决定图片的位置的。而在cocos2d中决定一个 图片的位置是由两个维度 一个是 position 也就是图片的中心点 另外一个是anchor point。只要我们搞清楚他们的关系,自然就迎刃而解。他们的关系是这样的:actualPosition.x = position.x + width*(0.5 - anchor_point.x);acturalPosi 阅读全文
摘要:
将swf文件拖进浏览器即可。 阅读全文
摘要:
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 阅读全文