@NSMutableArray继承自NSArray,其他方法参照前面章节的NSArray
// 将对象anObject添加到数组的末尾
- (void)addObject:(id)anObject
- (id)lastObject;
// 将对象anObject插入数组的index元素
- (void)insertObject:(id)anObject atIndex:(NSUInteger) index
- (void)replaceObjectAtIndex:(NSUInteger)index withObject:(id)anObject
// 将数组中的两个对象进行互换(OC中的冒泡排序,有这一句就行了)
- (void)exchangeObjectAtIndex:(NSUInteger)idx1 withObjectAtIndex:(NSUInteger)idx2;
- (void)removeObjectAtIndex:(NSUInteger)index
- (void)removeObject:(id)anObject
// 从数组中删除所有的对象
- (void)removeAllObjects;
// 从数组中删除最后一个对象
- (void)removeLastObject;
- (void)sortUsingSelector:(SEL)comparator
本文深入探讨了苹果iOS开发领域的关键技术,包括Objective-C和Swift语言的使用,Xcode开发环境的优化,以及如何构建高性能、易维护的应用程序。通过实例分析,展示了在iOS平台上实现复杂功能的有效策略。
1033

被折叠的 条评论
为什么被折叠?



