이 hello world 하나 따라 하는데도 시간이 엄청 걸리군요.. 안보이는거 보고..
오타난거 찾고.... 우선 웹으로 찾는건 싫으니 책을 사서 봐야 겠군요...
hello world.h
@interface ClickmeViewController : UIViewController {hello world.m
IBOutlet UILabel *Label;
IBOutlet UIButton *Button;
}
@property (nonatomic, retain) IBOutlet UILabel *Label;
@property (nonatomic, retain) IBOutlet UIButton *Button;
-(IBAction) CLickMe_Onclick: (id) sender;
@end
#import "ClickmeViewController.h"
@implementation ClickmeViewController
@synthesize Label;
@synthesize Button;
-(IBAction) CLickMe_Onclick: (id) sender {
Label.text = @"Hello World";
}