物理メモリを取得するためのコードを作成しました。正しいかどうか教えてください。
-(uint64_t)returnPhysicalMemory
{
uint64_t phy = HW_MEMSIZE;
NSNumber *bobsNumber=[NSNumber numberWithUnsignedLong:phy];
return phy;
}
物理メモリを取得するためのコードを作成しました。正しいかどうか教えてください。
-(uint64_t)returnPhysicalMemory
{
uint64_t phy = HW_MEMSIZE;
NSNumber *bobsNumber=[NSNumber numberWithUnsignedLong:phy];
return phy;
}
次のリンクをたどってください。
http://iphonesdkdev.blogspot.in/2009/01/source-code-get-hardware-info-of-iphone.html
それがあなたの問題を解決することを願っています。