上一页 1 ··· 21 22 23 24 25 26 27 28 29 ··· 57 下一页
  2011年12月5日
摘要: 1:本文摘自:http://www.cocoachina.com/iphonedev/sdk/2010/0120/339.html这个App基于lolfriend的源码改写,完全使用官方API。目前还没实现的功能有:替换UIImagePickerController的cameraOverlayView;滤镜。其他效果如图,我的测试环境是3.1.2的虚拟机和3.1.2的iPhone 3GS。如果编译不了的话,请参考一下这个帖子http://www.cocoachina.com/bbs/read.php?tid=9799附件:CameraDemo.zip 阅读全文
posted @ 2011-12-05 13:44 wtq 阅读(217) 评论(0) 推荐(0) 编辑
摘要: 1,本文摘自:http://www.apple.com.cn/developer/iphone/library/documentation/iPhone/Conceptual/iPhoneOSProgrammingGuide/GraphicsandDrawing/GraphicsandDrawing.html#//apple_ref/doc/uid/TP40007072-CH10-SW32 阅读全文
posted @ 2011-12-05 13:37 wtq 阅读(155) 评论(0) 推荐(0) 编辑
摘要: 本文摘自:http://www.devdiv.com/forum.php?mod=viewthread&tid=58560&highlight=%BD%D8%CD%BC本文参考:http://www.devdiv.com/forum.php?mod=viewthread&tid=31687&highlight=%BD%D8%CD%BCUIGraphicsBeginImageContext(pictureView.bounds.size); [pictureView.layer renderInContext:UIGraphicsGetCurrentContext 阅读全文
posted @ 2011-12-05 11:47 wtq 阅读(1491) 评论(0) 推荐(0) 编辑
  2011年11月30日
摘要: 本文摘自:http://www.cocoachina.com/applenews/devnews/2010/0721/1903.html苹果又对 App Store 的上传政策进行了更改,从7月22号起,苹果开发者只能用 Application Loader 上传应用。相信开发者们已经收到了苹果发来的邮件通知您可以通过以下链接下载 Application Loaderhttp://itunesconnect.apple.com/apploader/ApplicationLoader_1.3.dmgApplication Loader 的用法请看苹果官方的开发者手册第132页,下载地址http: 阅读全文
posted @ 2011-11-30 18:33 wtq 阅读(1909) 评论(1) 推荐(0) 编辑
摘要: 1,如果视图是从nib中加载的,我们应该首先实现initWithCode:因为nib中的对象实例将存储为归档对象。(某一个view设置为自定义的子view)hitTest代码范例:- (UIView *)hitTest:(CGPoint)point withEvent:(UIEvent *)event{ for (UIView *tmpView in self.subviews ) { if(tmpView.userInteractionEnabled && [tmpView isMemberOfClass:[UIButton class]]) { if (CGRectCont 阅读全文
posted @ 2011-11-30 18:24 wtq 阅读(348) 评论(0) 推荐(0) 编辑
摘要: 使用类别来为UIColor添加方法:#import <UIKit/UIKit.h>@interface UIColor(Random)+(UIColor *)randomColor;@end实现文件:@implementation UIColor(Random)+(UIColor *)randomColor{ static BOOL seeded = NO; if (!seeded) { seeded = YES; srandom(time(NULL)); } CGFloat red = (CGFloat)random()/(CGFloat)RAND_MAX; CGFlo... 阅读全文
posted @ 2011-11-30 11:03 wtq 阅读(317) 评论(0) 推荐(0) 编辑
  2011年11月29日
摘要: 本文摘自:http://www.yifeiyang.net/introduction-to-iphone-development-11-publishing-programs-in-the-app-store/#sec5 阅读全文
posted @ 2011-11-29 19:04 wtq 阅读(248) 评论(0) 推荐(0) 编辑
摘要: http://www.devdiv.com/thread-90336-1-1.html 阅读全文
posted @ 2011-11-29 18:41 wtq 阅读(112) 评论(0) 推荐(0) 编辑
  2011年11月28日
摘要: 原文摘自:http://www.cocoachina.com/bbs/read.php?tid=60977demo 阅读全文
posted @ 2011-11-28 12:45 wtq 阅读(521) 评论(0) 推荐(0) 编辑
摘要: 本文摘自:http://www.cocoachina.com/bbs/read.php?tid=49574设置:按钮的alpha透明的,按钮类型为custom… 阅读全文
posted @ 2011-11-28 11:43 wtq 阅读(784) 评论(0) 推荐(0) 编辑
上一页 1 ··· 21 22 23 24 25 26 27 28 29 ··· 57 下一页