2、选择devicefile选项。
3、在右方出现握伍郑的列表中段颂找data文件夹下的data文件夹。
4、找到相应的包名,包名下方就有数据库文橘圆件.db文件。
1,获取家目录路径稿含的函数:NSString *homeDir = NSHomeDirectory()
2,获取Documents目录路径的方法:
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES)
NSString *docDir = [paths objectAtIndex:0]
3,获取Caches目录路径的方法:
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES)
NSString *cachesDir = [paths objectAtIndex:0]
4,获取tmp目录路径的方法:
NSString *tmpDir = NSTemporaryDirectory()
5,获取应用程序程序包中资源文件路径的方法:
例如获取程键镇笑序包中一个图片资源(apple.png)路径的方法:
NSString *imagePath = [[NSBundle mainBundle] pathForResource:@”apple” ofType:@”旅局png”]
UIImage *appleImage = [[UIImage alloc] initWithContentsOfFile:imagePath]
代码中的mainBundle类方法用于返回一个代表应用程序包的对象。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)