在 iPhone 上访问视频文件以便我可以通过蓝牙传输它的过程是什么?
NSBundle *bundle = [NSBundle mainBundle];
NSString *moviePath = [bundle pathForResource:@"movie" ofType:@"m4v"];
如何访问 iPhone 上的文件系统?通过使用NSFileManager
,我只能访问应用程序沙箱中的文件。
在 iPhone 上访问视频文件以便我可以通过蓝牙传输它的过程是什么?
NSBundle *bundle = [NSBundle mainBundle];
NSString *moviePath = [bundle pathForResource:@"movie" ofType:@"m4v"];
如何访问 iPhone 上的文件系统?通过使用NSFileManager
,我只能访问应用程序沙箱中的文件。