1. 沙盒 & NSData /*_______________________________获取沙盒路径_________________________________________*/ //第一种获取方式 //NSHomeDirectory();获取到沙盒的目录路径 NSString *h ...
分类:
移动开发 时间:
2016-08-29 01:30:30
阅读次数:
199
1.利用从特定的路径中取出字典的返回BOOL值来进行判断。 //获取plist文件的地址,为空 NSString *path = [NSHomeDirectory() stringByAppendingPathComponent:@"Documents/d.plist"]; //根据文件创建字典 N ...
分类:
其他好文 时间:
2016-08-22 21:45:12
阅读次数:
169
今天回头看了一下归档与解归档,有普通的归档与解归档,更好的方法是runtimer.在这里我不是讲归档与解归档,而是讲很多文档中出现的一个问题,希望给大家带来帮助,不说废话了,上代码.1:错误的代码NSString*filePath=[NSHomeDirectory()stringByAppendingString:@"person"];很多文章..
分类:
移动开发 时间:
2016-08-17 23:21:45
阅读次数:
223
1.NSString *home = NSHomeDirectory();获取应用程序的目录路径, 目录下有三个文件夹:Documents、Library、tmp Documents:主要存放:使用该路径放置关键数据,也就是不能通过App重新生成的数据 Library:主要存放:缓存文件 ,可以实时 ...
分类:
其他好文 时间:
2016-07-30 09:11:12
阅读次数:
155
1、获取磁盘总空间大小//磁盘总大小
+ (CGFloat)diskofAllSizeMBytes{
CGFloat size = 0.0;
NSError* error;
NSDictionary* dic = [[NSFileManager defaultManager]attributesOfFileSystemForPath:NSHomeDirectory() err...
分类:
移动开发 时间:
2016-06-28 12:55:52
阅读次数:
221
iOS的应用只能访问系统为该应用创建的区域,不可访问其他区域,这块区域就是沙盒(sandBox)。我们常常把一些图片,属性文件(plist文件)等等存在到该目录下,以便开发中使用。
1.获取沙盒路径
a.获取模拟器沙盒路径
如果在开发中,你不知道你想查找的应用沙盒路径的话,你可以通过NSHomeDirectory()这个方法来打印你的沙盒路径。
eg:
NSLog(@"沙盒路径---...
分类:
移动开发 时间:
2016-05-07 09:50:27
阅读次数:
239
Documents:用来保存用户生成的文件,其他数据以及其他程序不能重新创建的文件 Library:可以重新下载或者重新生成的文件 Tmp:临时存放的数据 沙盒路径的获取方式: 方法一:拼接路径 NSString *path = [NSHomeDirectory() stringByAppendin ...
分类:
其他好文 时间:
2016-04-18 17:06:19
阅读次数:
109
IOS批量截取视频截图 //生成截图 NSString *path = [NSHomeDirectory() stringByAppendingString:@"/Documents"]; NSLog(@"path %@", path); for (int i = 0; i<[mItems coun ...
分类:
移动开发 时间:
2016-04-09 15:04:15
阅读次数:
170
创建数据库语句 -(void)creatData { sqlite3 *sqlite = nil; NSString *filePath = [NSHomeDirectory() stringByAppendingPathComponent:@"Documents/data.file" ]; //打 ...
分类:
数据库 时间:
2016-04-09 12:19:12
阅读次数:
209
SQLite 的官网 http://addons.mozillan.org/firefox/addon/sqlite-manager/ http://www.sqlite.org sqlite3 *sqlite = nil; NSString *filePath = [NSHomeDirectory ...
分类:
数据库 时间:
2016-04-09 11:59:35
阅读次数:
157