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 |
31 |
Tags
- arch -arm64 brew install
- Swfit
- The image set has an unassigned child.
- Deploument Info
- The iOS deployment target
- Unable to install
- 프로젝트기본설명
- iOS개발
- 설명
- 의존성
- Cannot install under Rosetta 2 in ARM default prefix (/opt/homebrew)!
- 영어읽어라
- swift하고싶다
- Swift
- 코드설게
- 'IPHONEOS_DEPLOYMENT_TARGET' is set to 10.0
- swift하고싶다.
- FIRApp configure
- Project File List
- objectiv-C
- error
- 'openURL:' is deprecated: first deprecated in iOS 10.0
- 버전분기
- HomeBrew #MAC
- Xcode
- objectiveC
- duplicate symbols for architecture arm 64
- git
- ios
- 'AudioSessionSetActive' is deprecated: first deprecated in iOS 7.0 - no longer supported
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]; 로 초기화해준다.
반응형