我遇到了一个问题。我的环境是:
OSX 10.10.5 YOsemite
xocde 7.2
我想在我的ios模拟器中添加一个新的视频文件(.mp4)。我在
中添加了这个 /Users/mynane/Library/Developer/CoreSimulator/Devices/mydevice/data/Media/DCIM/100APPLE
添加此项后,当我重新启动我的模拟器时,未显示添加的视频。它仅显示以前添加的默认图像。
我也删除了
photoData
但结果相同。
我怎么能解决这个问题?
答案 0 :(得分:1)
请在下面的路径
中粘贴视频文件或任何要用ios模拟器预加载的文件String str = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS 9.2.simruntime/Contents/Resources/SampleContent/Media/DCIM/100APPLE/
或者你可以使用下面的java代码将你想要的文件复制到模拟器位置。
public void preloadFiletoSimulator(String filename){
try {
File dest = new File(str);
String name = AppConstant.RESOURCE_DIR+filename;
File source = new File(name);
FileUtils.copyFileToDirectory(source, dest);
} catch (IOException e) {
e.printStackTrace();
}
}