利用できるメモリを返します
unsigned int NSRealMemoryAvailable ( void );
解説
利用できるメモリを返します。
返り値
引数
( void )
フレームワーク
Foundation
クラス
NSRealMemoryAvailable
Function
使用可能
10.0
参照
例文
#import "MyObject.h" @implementation MyObject - (IBAction)myAction:(id)sender { NSLog([NSString stringWithFormat:@"%dMB",(NSRealMemoryAvailable()/1024/1024)]); } @end