手指轻扫屏幕成功时,如何能够发出声音
手指轻扫屏幕成功时,如何能够发出声音 就是触发一个事件成功后,能够听到一个响声 10分 设置里有吧 10分 TouchEnded里面播放音效就好了 我想知道声音是如何弄出来的 ……
咨询个objective-c的语法问题
在head first iphone development中看到关于属性的readwirte和retain有如下解释, readwrite:When you want the property to be modifiable by people. The compiler will generate a getter and a sette……
objC 提示我找不到我自己定义的类
#import <Foundation/Foundation.h> #import "test1.h" int main (int argc, const char * argv[]) { NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; [[F……
如何分享内容到Twitter。
如题。 40分 - (void) postToTwitter { // Since this will be launched in a separate thread, we need // an autorelease pool NSAutoreleasePool *pool = [[NSAutoreleasePoo……
objective-c中能够直接调用C语言写的函数吗?
objective-c中能够直接调用C语言写的函数吗?最近要将电脑上的一个C语言写的特征提取算法移植到iphone的一个应用中,如果要重新写的话很是麻烦,不知道能不能直接调用啊?? 40分 可以使用 C 语言。 但是只可以使用 源代码 与静态库,不能使用动态库。 问题在于 封装的类型与原生的 C 类型之间的转换。 哦,好……