Notice
Recent Posts
Recent Comments
Link
| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 1 | ||||||
| 2 | 3 | 4 | 5 | 6 | 7 | 8 |
| 9 | 10 | 11 | 12 | 13 | 14 | 15 |
| 16 | 17 | 18 | 19 | 20 | 21 | 22 |
| 23 | 24 | 25 | 26 | 27 | 28 | 29 |
| 30 |
Tags
- 프로젝트기본설명
- The image set has an unassigned child.
- Swfit
- objectiv-C
- duplicate symbols for architecture arm 64
- Deploument Info
- arch -arm64 brew install
- 'AudioSessionSetActive' is deprecated: first deprecated in iOS 7.0 - no longer supported
- 'openURL:' is deprecated: first deprecated in iOS 10.0
- Xcode
- 영어읽어라
- 코드설게
- Project File List
- objectiveC
- HomeBrew #MAC
- error
- swift하고싶다.
- ios
- git
- 'IPHONEOS_DEPLOYMENT_TARGET' is set to 10.0
- FIRApp configure
- iOS개발
- 설명
- Cannot install under Rosetta 2 in ARM default prefix (/opt/homebrew)!
- 의존성
- swift하고싶다
- Unable to install
- Swift
- 버전분기
- The iOS deployment target
Archives
- Today
- Total
행복한 세상의 니노
[Error][__NSArray0 removeAllObjects]: unrecognized selector sent to instance 본문
IOS/Objective-C
[Error][__NSArray0 removeAllObjects]: unrecognized selector sent to instance
니노z 2022. 8. 23. 15:01NSMutableArray의 모든것을 지우기위해
NSMutableArray *aaa = [[NSMutableArray alloc] init];
[aaa removeAllObjects]를 선언햇는데 해당 오류가 떳다.
뜻은
인식할 수 없는 선택기가 인스턴스로 전송됨
이라는데.. 흠..
해결방법 :
aaa = [[NSMutableArray alloc] init]; 로 초기화해준다.
반응형