[selections addObject:[[self class] selectionStringForType:self.gameType word:selectionWords.firstObject]];
[selectionWords removeObjectAtIndex:0];
selectionWords이라는 배열에서
selectionWords.firstObject - firstObject를 뽑아내서 사용을하고, [selectionWords removeObjectAtIndex:0]; removeObjectAtIndex를 사용해서 사용한 첫번째 오브젝트를 삭제해준다.
배열에 맨 앞에를 삭제해주면서 에러가 뜰 것 같았지만 자동으로 처리를 해주는 모습을 볼 수 있었다.
'개발 > 아이오에스' 카테고리의 다른 글
objective-c ] UIView CAGradientLayer gradient - 적용하기 (0) | 2021.10.20 |
---|---|
objective-c ] UIButton border width, color 설정, 테두리 설정하기 (0) | 2021.10.19 |
ios] leadingAnchor(trailingAnchor)와 leftAnchor(rightAnchor) 차이 (0) | 2021.09.17 |
ios] 에러해결 - command phasescriptexecution failed with a nonzero exit code (0) | 2021.09.07 |
swift]앱에서 디바이스 환경설정 - 해당 앱 알림 설정 창 화면에 띄우는 방법 (0) | 2021.08.26 |