반응형 IT/objc2 Objective-C data types, class * 문자 char NSString * 숫자 int float doule * 그외 bool date array * 상수 const * OOP - 메소드 종류 +(int) myClassMethod -(int) myInstanceMethod; * 수정가능한 스트링 클래스 NSMutableString 예제) NSMutableString *myString = [NSMutableString stringWithString:@"Au Contraire"]; NSLog(@"%@", myString); [myString setString:@"Au Contraire, Mon Frere"]; NSLog(@"%@", myString); * 클래스의 선언과 사용 //선언 @interface ViewController : UIVie.. 2022. 8. 26. objective-c 개발 환경설정( in raspberry pi) mac 있으면 그냥된다 -_-; 나도 맥이 있지만, 공부겸 라즈베리파이에 컴파일러 환경을 찾아보던중, 되길래 공유해보겠다. 원글-- https://askubuntu.com/questions/328343/how-to-compile-build-and-run-objective-c-program-in-ubuntu-using-terminal How to compile/build and run Objective-C program in Ubuntu using Terminal? So here I have the basic "hello world" script for Objective-C, I have Ubuntu on my laptop and want to use Ubuntu to start compiling basi.. 2019. 11. 25. 이전 1 다음 반응형