Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
How to get information about free memory and running processes in an App Store approved app? (Yes, there is one!)

How to get available memory in IOS ? I don't know..

I googled, then I know how can i get the physical memory, user memory and used mem, free mem in VM.

But. the memory size is different with which is Settings -> General -> About -> Avaliable.

I want to know "Avaliable" in Settings.

Have a nice day .

share|improve this question
I think you mean "available storage" -- stackoverflow.com/a/8036586/603256 – Jaitsu May 18 '12 at 8:03
Does the following work for you? stackoverflow.com/questions/5012886/… – Andreas Ley May 18 '12 at 8:04
Oh. I see. That's right. "available storage"... but one more question. I got the "available storage" use behind the method, but a little different .. always 200MB or 160MB. why .. ? help me .. – alex May 21 '12 at 5:29

marked as duplicate by casperOne May 22 '12 at 14:08

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

found this on here a few months back cant remember who originally posted. Is this what you are looking for?

- (uint64_t)freeDiskspace
{
uint64_t totalSpace = 0;
uint64_t totalFreeSpace = 0;

__autoreleasing NSError *error = nil;  
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 unsignedLongLongValue];
    totalFreeSpace = [freeFileSystemSizeInBytes unsignedLongLongValue];
    NSLog(@"Memory Capacity of %llu MiB with %llu MiB Free memory available.", ((totalSpace/1024ll)/1024ll), ((totalFreeSpace/1024ll)/1024ll));
   } else {  
    NSLog(@"Error Obtaining System Memory Info: Domain = %@, Code = %@", [error domain], [error code]);  
}  

return totalFreeSpace;
}
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.