用于:音乐播放的时间
NSString *str= [NSString stringWithFormat:@"%ff",CMTimeGetSeconds(self.player.currentItem.currentTime)];//时间戳
NSTimeInterval time=[str doubleValue]+28800;//因为时差问题要加8小时 == 28800 sec
NSDate *detaildate=[NSDate dateWithTimeIntervalSince1970:time];
NSLog(@"date:%@",[detaildate description]);
//实例化一个NSDateFormatter对象
NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
//设定时间格式,这里可以设置成自己需要的格式
[dateFormatter setDateFormat:@" mm:ss"];
NSString *currentDateStr = [dateFormatter stringFromDate: detaildate];
NSLog(@" 格式化时间:%@",currentDateStr);