Code/XCODE
-
Xcode - button title 변경 및 체크 박스 구현Code/XCODE 2012. 2. 15. 12:45
StoryBoard - Button 삽입 ( 체크 박스 사이즈 ) - Inspector ( 연결 들 ) - Touch Up Inside - ViewContorller - chagneButtonText (연결 ) - Referencing Outlets - ViewContorller - autoLoginButton (연결 ) 참조. 1 구현 ViewController.h @interface ViewController : UIViewController{ IBOutlet UIButton *autoLoginButton; } @property (retain, nonatomic) UIButton *autoLoginButton; - (IBAction)changeButtonText:(id)sender; @end View..
-
Object-C 기본Code/XCODE 2011. 6. 26. 13:41
Format .h : - hearder - class, type, function, 상수 등 - #import (#include) .m : - Source code format - .mm (c++ 개념) 지시어 - @ ( 컴파일러 지시어 ) - @interface (클래스 선언) - @implementation (클래스 구현) - @protocol (Delegate등 일반적 선언) - @end ( class, category, protocol 등의 종료 지시) 접근지정자 -@public ( 상속(o), 모든곳) -@private ( 상속(x), 해당 클래스에서만 사용) -@protected (상속된 클래스에서 사용, 정의된 클래스에서 사용 exception - @throw - @catch() - @fin..