0

我尝试以 aac 类型录制语音文件并以 uitable 和工作良好的方式显示,但我无法在 iTunes 文件共享中显示

我激活了UIFIleSharingEnabled

但是我在iTunes文件共享中看不到aac文件我该怎么办?

文件格式音频格式MPEG4AAC

文件地址: file ://localhost/Users/myuser/...aac

保存零件

NSArray *keys = [NSArray arrayWithObjects:@"voicestr",,@"datestr",@"durstr",nil];

NSDictionary * HistDict =[[NSDictionary alloc] initWithObjects: [NSArray arrayWithObjects:myString,timeString,dateString,currentimeLbl.text,bestsize ,nil] forKeys:keys];

[Hist addObject:HistDict];

加载文件

 BOOL fileExists = [[NSFileManager defaultManager] fileExistsAtPath:myPath];if (fileExists) 
    HistValue = [[NSMutableArray alloc] initWithContentsOfFile:myPath];
4

1 回答 1

1

您可以使用以下方法获取 iOS 的文档目录:

NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);

NSString *basePath = [paths objectAtIndex:0] 

添加文件名

NSString *fielWithPath = [basePath stringByAppendingPathComponent:@"fileNaem"];

并且您必须在info.plist

UIFileSharingEnabled = YES
于 2013-03-10T13:10:11.167 回答