-3

私はObjectiveCの初心者です。

forループを使用してオブジェクト[特定のクラスのオブジェクト]のリストからデータをフェッチする方法を知りたいです。

4

1 に答える 1

1

ループを使用します。これが問題を解決するためのサンプルコードです

for(int itemIndex = 0;itemIndex < yourCollectionCount; itemIndex++){


    id myObject = yourCollection objectAtIndex:itemIndex]; //replace id  with your Collection Individual Item dataType

}

また

アイテムのインデックスがわかっている場合は、

id myObject = yourCollection objectAtIndex:knownIndex]; //replace id  with your Collection Individual Item dataType
于 2012-12-10T05:26:21.557 に答える