Foundation框架数组对象及集合对象
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Foundation框架数组对象及集合对象相关的知识,希望对你有一定的参考价值。
数组对象NSArray
数组对象的创建:
+ (instancetype)array //空数组 + (instancetype)arrayWithObject:(ObjectType)anObject //一个对象元素的数组 + (instancetype)arrayWithObjects:(ObjectType)firstObj, … //多个对象元素的数组(最后一个参数为nil)
字面值:
NSArray * arr = @[@"hello", @10, @YES]; //常量方式
注意:只能存储OC对象,数值需要封装成对象,nil需要封装成NSNull
基本操作:
@property(readonly) NSUInteger count - (BOOL)containsObject:(ObjectType)anObject @property(nonatomic, readonly) ObjectType firstObject @property(nonatomic, readonly) ObjectType lastObject - (ObjectType)objectAtIndex:(NSUInteger)index - (NSUInteger)indexOfObject:(ObjectType)anObject
文件/URL操作相关:
+ (NSArray<ObjectType> *)arrayWithContentsOfFile:(NSString *)aPath + (NSArray<ObjectType> *)arrayWithContentsOfURL:(NSURL *)aURL - (BOOL)writeToFile:(NSString *)path atomically:(BOOL)flag - (BOOL)writeToURL:(NSURL *)aURL atomically:(BOOL)flag
数组的遍历方式一:C语言方式
for ( int i=0; i<arr.count; i++) { NSLog(@"%@", arr[i]); }
数组的遍历方式二:
for ( id obj in arr4) { NSUInteger i = [arr4 indexOfObject:obj]; NSLog(@"index:%lu %@", i, obj); }
注意:这种遍历方式应用在可变数组时,不要在 遍历过程中改变数组
可变数组对象
NSMutableArray用于描述可变数组对象,是NSArray的子类
添加:
- (void)addObject:(ObjectType)anObject - (void)addObjectsFromArray:(NSArray<ObjectType> *)otherArray - (void)insertObject:(ObjectType)anObject atIndex:(NSUInteger)index
删除:
- (void)removeAllObjects - (void)removeLastObject - (void)removeObjectAtIndex:(NSUInteger)index
集合对象
NSSet用于描述集合对象,子类为NSMutableSet
集合与数组的区别:1)集合不支持下标取成员 2)集合中不能有重复对象
集合对象的创建:
+ (instancetype)set + (instancetype)setWithArray:(NSArray<ObjectType> *)array + (instancetype)setWithObject:(ObjectType)object + (instancetype)setWithObjects:(ObjectType)firstObj, firstObj, ...
集合对象的常见操作:
@property(readonly) NSUInteger count @property(readonly, copy) NSArray < ObjectType > *allObjects - (ObjectType)anyObject - (BOOL)containsObject:(ObjectType)anObject
可变集合对象的操作:
- (void)addObject:(ObjectType)object - (void)removeObject:(ObjectType)object - (void)removeAllObjects - (void)addObjectsFromArray:(NSArray<ObjectType> *)array
其他集合对象:
可变集合对象NSMutableSet
索引集合NSIndexSet
字符集合NSCharacterSet
...
本文出自 “teacherAn” 博客,请务必保留此出处http://annmeng.blog.51cto.com/3321237/1745709
以上是关于Foundation框架数组对象及集合对象的主要内容,如果未能解决你的问题,请参考以下文章