IOS/Objective-C
-
[error/iOS] The iOS deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 10.0, but the range of supported deployment target versions is 11.0 to 16.1.99.IOS/Objective-C 2023. 2. 13. 17:08
The iOS deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 10.0, but the range of supported deployment target versions is 11.0 to 16.1.99. 번역 : iOS 배포 대상 'IPHONEOS_DEPLOYMENT_TARGET'은 10.0으로 설정되어 있지만 지원되는 배포 대상 버전의 범위는 11.0~16.1.99입니다. ChatGPT This error message is indicating that the deployment target for your iOS app is set to 10.0, but the latest supported deployment target version is 1..
-
[Error][__NSArray0 removeAllObjects]: unrecognized selector sent to instanceIOS/Objective-C 2022. 8. 23. 15:01
NSMutableArray의 모든것을 지우기위해 NSMutableArray *aaa = [[NSMutableArray alloc] init]; [aaa removeAllObjects]를 선언햇는데 해당 오류가 떳다. 뜻은 인식할 수 없는 선택기가 인스턴스로 전송됨 이라는데.. 흠.. 해결방법 : aaa = [[NSMutableArray alloc] init]; 로 초기화해준다.
-
Objective-C 란? 정리IOS/Objective-C 2022. 4. 10. 00:05
1. 1980년대 초에 Objective-C를 브래드 콕스(Brad j. Cox)가 설계하였다. 이 언어는 SmallTalk-80라는 언어를 기반으로 만들어졌다. Objective-C는 언어 위에 올려져 있는 "계층적(layered) 구조"다. 즉 C언어를 확장하여 "객체"를 생성하고 다룰 수 있는 언어인 것이다. 2. Objective-C가 C언어라 해도 틀렸다고 말 할 수 없다. (확장된 개념이기 떄문에.) 3. Objective-C는 Obj-C로 줄여서 사용하기도 한다. 4. Objective-C는 1984년에 발표되어 1988년, 넥스트는 스텝 스톤에게 오브젝티브-C 사용 허가를 받고, 오브젝티브-C를 지원하기 위하여 컴파일러를 확장한다. 이후 넥스트 스텝 사용자 인터페이스와 인터페이스 빌더를 구..