ios,iTunes文件共享保存音频文件
Posted
技术标签:
【中文标题】ios,iTunes文件共享保存音频文件【英文标题】:ios ,iTunes file sharing save audio file 【发布时间】:2013-02-16 20:06:53 【问题描述】:我尝试以 aac 类型录制语音文件 并显示 uitable 并且工作良好,但我无法在 iTunes 文件共享中显示
我激活了 UIFIleSharingEnabled
但在itunes文件共享中看不到aac文件,我该怎么办?
文件格式音频格式MPEG4AAC
fileaddres : 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];
【问题讨论】:
文件必须存放在Documents
目录下。
好的,如果你能帮我用这段代码存储在documet目录中?对于 AAC 文件
在NSDocumentDirectory
上进行搜索。你会发现很多样本。
如果只保存在 nsDocumentdirectory ints 中自动读取 iTunes 文件共享?
是的,iTunes 文件共享会显示应用程序 Documents 目录的内容。
【参考方案1】:
你用这个方法得到ios的文档目录:
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *basePath = [paths objectAtIndex:0]
添加文件名
NSString *fielWithPath = [basePath stringByAppendingPathComponent:@"fileNaem"];
你必须在info.plist
启用文件共享
UIFileSharingEnabled = YES
【讨论】:
以上是关于ios,iTunes文件共享保存音频文件的主要内容,如果未能解决你的问题,请参考以下文章