-4

物理メモリを取得するためのコードを作成しました。正しいかどうか教えてください。

-(uint64_t)returnPhysicalMemory
{
    uint64_t phy = HW_MEMSIZE;
    NSNumber *bobsNumber=[NSNumber numberWithUnsignedLong:phy];

    return phy;
}
4

1 に答える 1

1

次のリンクをたどってください。

http://iphonesdkdev.blogspot.in/2009/01/source-code-get-hardware-info-of-iphone.html

それがあなたの問題を解決することを願っています。

于 2012-12-28T09:16:13.573 に答える