Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
配列の末尾に要素を追加するにはどうすればよいですか? objectAtIndex: メソッドがあることは知っていますが、配列の最後にいることを確認するにはどうすればよいでしょうか?
の代わりにobjectAtIndex、addObject:
objectAtIndex
addObject:
開発者のメモによると:
配列の最後に特定のオブジェクトを挿入します。
- (void)addObject:(id)anObject
Appleドキュメントから:[array addObject:obj];
[array addObject:obj];
どういう意味:
配列の最後にいることを確認するにはどうすればよいですか?
デフォルトでは、オブジェクトは最後に配置されます。
https://developer.apple.com/library/ios/#documentation/Cocoa/Reference/Foundation/Classes/NSMutableArray_Class/Reference/Reference.html