IOS中有哪些不同的存储空间/设置>?

时间:2012-05-22 02:03:26

标签: ios storage

我使用了以下方法,因此我获得了可用的存储空间......大约198MB。

但是,当我查看手机时,我看到了不同的值,设置>一般>关于>可用0字节。

为什么有不同?

{ ...

NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);  
NSDictionary *dictionary = [[NSFileManager defaultManager] attributesOfFileSystemForPath:[paths lastObject] error: &error];  

if (dictionary) {  
    NSNumber *fileSystemSizeInBytes = [dictionary objectForKey: NSFileSystemSize];  
    NSNumber *freeFileSystemSizeInBytes = [dictionary objectForKey:NSFileSystemFreeSize];
    totalSpace = [fileSystemSizeInBytes floatValue];
    totalFreeSpace = [freeFileSystemSizeInBytes floatValue];
    NSLog(@"Memory Capacity of %f MiB with %f MiB Free memory available.", ((totalSpace/1024.0f)/1024.0f), ((totalFreeSpace/1024.0f)/1024.0f));
    }

...

}

嗯..我用谷歌搜索.. 2天..但我不确切知道..这就是为什么.. (Iphone 200MB / IPod 160MB ..有不同的存储空间)

0 个答案:

没有答案