1、在创建一个录音AVAudioRecorder的时候,要重录或回放,一定要创建一个会话AVAudioSession
2、UITapGestureRecognizer用户响应单击
UITapGestureRecognizer *tapGestureRecognizer = [[UITapGestureRecognizeralloc] init];
tapGestureRecognizer.numberOfTapsRequired = 1;
tapGestureRecognizer.delegate=self;
[self.view addGestureRecognizer: tapGestureRecognizer];
3、iphone ios 多线程 multi thread编程汇总: http://blog.csdn.net/linzhiji/article/details/6848652
4、强制转换获得已经创建的对象。
MessageListTableViewCell* cell=(MessageListTableViewCell*)[_tablecellForRowAtIndexPath:[NSIndexPathindexPathForRow:0 inSection:_playIndex]];
5、ASIHTTPRequest 详解, http 请求终结者