Chinaunix首页 | 论坛 | 博客
  • 博客访问: 188321
  • 博文数量: 60
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 385
  • 用 户 组: 普通用户
  • 注册时间: 2013-02-19 21:43
个人简介

readonly

文章分类

全部博文(60)

文章存档

2013年(60)

我的朋友

发布时间:2013-02-21 00:59:33

下面的结构图能很清晰而全面的告诉你应该为自己的 App 选择什么图形引擎.......【阅读全文】

阅读(1001) | 评论(0) | 转发(0)

发布时间:2013-02-20 09:17:36

注册监听键盘事件的通知[[NSNotificationCenter defaultCenter] addObserver:selfselector:@selector(keyboardWillShow:)name:UIKeyboardWillShowNotificationobject:nil];[[NSNotificationCenter defaultCenter] addObserver:selfselector:@selector(keyboardShow:)name:UIKeyboardDidShowNotification.........【阅读全文】

阅读(2168) | 评论(0) | 转发(0)

发布时间:2013-02-20 00:50:43

有了 Cocoa 的 NSLog,你在写 Cocoa 程序的时候,就可以无需每次都调用 NSAlert 来观察中 间结果了。NSLog 的定义NSLog 定义在 NSObjCRuntime.h 中,如下所示:void NSLog(NSString *format, ...);基本上,NSLog 很像 printf,同样会在 console 中输出显示结果。不同的是,传递进去的格 式化字符是 NSStri.........【阅读全文】

阅读(906) | 评论(0) | 转发(0)

发布时间:2013-02-20 00:46:28

1.iPhone 应用中获得时间差CFTimeInterval time = CFAbsoluteTimeGetCurrent();当然你也可以纪录开始接触和手指离开的时间,二者相减便是时差time1 = [touch timestamp]; time2 = [touch timestamp]; 时间差 = time2 - time1; 2.iPhone播放简短音效的代码 NSString *path = [[NSBundle mainBund.........【阅读全文】

阅读(1404) | 评论(0) | 转发(0)

发布时间:2013-02-20 00:14:40

NSString 和 NSMutableString 可以说是软件开发人员每天都要面对的基本操作,昨天 CocoaChina 向新手们介绍了一批数组操作的代码例子,下面就分享一些常见的 NSString 和 NSMutableString 方法。......【阅读全文】

阅读(676) | 评论(0) | 转发(0)
给主人留下些什么吧!~~
留言热议
请登录后留言。

登录 注册