2012年6月11日
摘要: AVAudioPlayer 提供了大量的特性,包括暂停播放,调整音量,监控音频的峰值和均值等等。AVAudioPlayer *player;NSString *path;// 设置音乐文件路径path = [[NSBundle mainBundle] pathForResource:@"sound-file" ofType:@"mp3"];// 判断是否可以访问这个文件if ([[NSFileManager defaultManager] fileExistsAtPath:path]) { // 设置 player player = [[AVAudioP 阅读全文
posted @ 2012-06-11 15:45 tx天翔 阅读(3687) 评论(0) 推荐(0) 编辑
摘要: 1、 NSDateFormatter *formatter = [[NSDateFormatter alloc] init]; [formatter setDateStyle:NSDateFormatterMediumStyle]; [formatter setTimeStyle:NSDateFormatterMediumStyle]; NSLog(@"%@", [formatter stringForObjectValue:run.date]); 阅读全文
posted @ 2012-06-11 09:22 tx天翔 阅读(868) 评论(0) 推荐(0) 编辑