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.
、NSArray、NSMutuableArray... データ型、addobject:メソッドで、そのサイズを制限することはできますか?
NSArray
NSMutuableArray
addobject:
NSMutableArray に追加できる要素の量を制限しようとしていますか?
その場合は、新しいオブジェクトを追加する前に、現在のカウントが目的の最大数よりも少ないことを確認できます。
if (someMutableArray.count < max) { [someMutableArray addObject:anObject]; };