发布时间:2013-02-20 09:17:36
注册监听键盘事件的通知[[NSNotificationCenter defaultCenter] addObserver:selfselector:@selector(keyboardWillShow:)name:UIKeyboardWillShowNotificationobject:nil];[[NSNotificationCenter defaultCenter] addObserver:selfselector:@selector(keyboardShow:)name:UIKeyboardDidShowNotification.........【阅读全文】
发布时间:2013-02-20 00:50:43
有了 Cocoa 的 NSLog,你在写 Cocoa 程序的时候,就可以无需每次都调用 NSAlert 来观察中 间结果了。NSLog 的定义NSLog 定义在 NSObjCRuntime.h 中,如下所示:void NSLog(NSString *format, ...);基本上,NSLog 很像 printf,同样会在 console 中输出显示结果。不同的是,传递进去的格 式化字符是 NSStri.........【阅读全文】
发布时间: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.........【阅读全文】
发布时间:2013-02-20 00:14:40
NSString 和 NSMutableString 可以说是软件开发人员每天都要面对的基本操作,昨天 CocoaChina 向新手们介绍了一批数组操作的代码例子,下面就分享一些常见的 NSString 和 NSMutableString 方法。......【阅读全文】