下面是内存溢出 jb51.cc 通过网络收集整理的代码片段。
内存溢出小编现在分享给大家,也给大家做个参考。
[super vIEwDIDLoad]; // 获取App的SandBox路径 Nsstring *sandBoxPath = NSHomeDirectory(); NSLog(@"%@",sandBoxPath); //获取documents路径 Nsstring *doc = [sandBoxPath stringByAppendingPathComponent:@"documents"]; NSLog(@"doc:%@",doc); //另一种获取documents路径的方式 NSArray *paths = NSSearchPathForDirectorIEsInDomains(NSdocumentDirectory,NSUserDomainMask,YES); Nsstring *doc1 = [paths firstObject]; NSLog(@"Doc:%@",doc1); //获取library的路径 Nsstring *lib = [NSSearchPathForDirectorIEsInDomains(NSlibraryDirectory,YES) firstObject]; NSLog(@"%@",lib); //获取library下的Caches目录 Nsstring *caches = [NSSearchPathForDirectorIEsInDomains(NSCachesDirectory,YES)firstObject]; NSLog(@"Caches:%@",caches); //获取临时目录下tmp Nsstring *tmp = NstemporaryDirectory(); NSLog(@"tmp:%@",tmp); //如何获取应用程序本身的路径 NSBundle *mainBundle = [NSBundle mainBundle];//mainBundle 对象代表应用程序本身的内容 Nsstring *path = [mainBundle pathForResource:@"a" ofType:@"jpg"]; NSLog(@"%@",path); //获取Url NSURL *url = [mainBundle URLForResource:@"a" withExtension:@"jpg"]; NSLog(@"url:%@",url);
以上是内存溢出(jb51.cc)为你收集整理的全部代码内容,希望文章能够帮你解决所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
总结以上是内存溢出为你收集整理的iOS获取App各种文件的路径方法汇集全部内容,希望文章能够帮你解决iOS获取App各种文件的路径方法汇集所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)