NSString *tempFilePath = [NSTemporaryDirectory() stringByAppendingPathComponent:@"tmp.mp3"]; NSFileManager *manager = [NSFileManager defaultManager]; [manager createFileAtPath:tempFilePath contents:mp3Data attributes:nil]; AVURLAsset *asset = [[AVURLAsset alloc] initWithURL:[NSURL fileURLWithPath:tempFilePath] options:nil]; dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(2 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{ [manager removeItemAtPath:tempFilePath error:nil]; });
TuΔrul Γzdemir
source share