Notice
Recent Posts
Recent Comments
Link
목록Property (1)
NewGen
object-c class 사용법 간단 정리.
Obj-c 클래스 생성 및 호출이용 클래스 선언 기본 @interface Custom_Class_Name : SuperClass_Name { //변수 } +(void)func1: (int)in_num; //+ c++에서 static -(void)func2 : (NSString*)in_str; //- : general class member func. @end * Header file #ifndef test_objc_h #define test_objc_h #import @interface testObjClass : NSObject { NSString* str1; //ARC mode on이므로 자동으로 메모리 관리가 들어감. NSString* str2; int nNum1; NSString* testStr1;..
IOS
2020. 12. 30. 17:55