NSArray - indexOfObject, indexOfObjectIdenticalTo

2021. 5. 21. 10:18개발자료/iOS


반응형

# indexOfObject

- (NSInteger)indexOfObject:(id)anObject;

index 0부터 끝까지 anObject와 isEqual을 이용해 같은 객체를 찾는다.

 

# indexOfObjectIdenticalTo

- (NSInteger)indexOfObjectIdenticalTo:(id)anObject;

index 0부터 끝까지 anObject의 주소가 일치하는 객체를 찾는다. 값이 같다고 해서 같은 주소를 가지고 있는 객체는 아니다.

반응형

'개발자료 > iOS' 카테고리의 다른 글

AppStore 수출 규정 참고 자료  (0) 2021.07.21
NSNotification  (0) 2021.05.31
NSMutableAttributedString  (0) 2021.05.11
[XIB] UILabel  (0) 2021.05.10
특정 시간후에 코드 실행하기  (0) 2021.04.30