私はObjectiveCの初心者です。
forループを使用してオブジェクト[特定のクラスのオブジェクト]のリストからデータをフェッチする方法を知りたいです。
ループを使用します。これが問題を解決するためのサンプルコードです
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