NSArray - indexOfObject, indexOfObjectIdenticalTo
# indexOfObject - (NSInteger)indexOfObject:(id)anObject; index 0부터 끝까지 anObject와 isEqual을 이용해 같은 객체를 찾는다. # indexOfObjectIdenticalTo - (NSInteger)indexOfObjectIdenticalTo:(id)anObject; index 0부터 끝까지 anObject의 주소가 일치하는 객체를 찾는다. 값이 같다고 해서 같은 주소를 가지고 있는 객체는 아니다.
2021.05.21