존칭이 생략되어 있습니다. 이점 양해 바랍니다 ^^
1. 프로젝트 코드 작성
testbuttonAppDelegate.h
//
// testbuttonAppDelegate.h
// testbutton
//
// Created by Kyungmin Cho on 08. 09. 30.
// Copyright __MyCompanyName__ 2008. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface testbuttonAppDelegate : NSObject <UIApplicationDelegate> {
UIWindow *window;
IBOutlet UITextField *text1;
IBOutlet UIButton *button1;
}
@property (nonatomic, retain) IBOutlet UIWindow *window;
- (IBAction) OnButtonClick:(id)sender;
@end
testbuttonAppDelegate.m
//
// testbuttonAppDelegate.m
// testbutton
//
// Created by Kyungmin Cho on 08. 09. 30.
// Copyright __MyCompanyName__ 2008. All rights reserved.
//
#import "testbuttonAppDelegate.h"
@implementation testbuttonAppDelegate
@synthesize window;
- (void)applicationDidFinishLaunching:(UIApplication *)application {
// Override point for customization after application launch
[window makeKeyAndVisible];
}
- (void)dealloc {
[window release];
[super dealloc];
}
- (IBAction) OnButtonClick: (id) sender
{
[text1 setText: @"click!"];
}
@end
'KB > iPhone 개발' 카테고리의 다른 글
iPhoneSDK How to make first Instance (0) | 2009.01.20 |
---|---|
iPhone: UIImageView 사용하기 (0) | 2009.01.19 |
iPod Touch Native Compile - 아이팟에서 개발하기 (0) | 2009.01.18 |
iPhone: TabBar 사용하기 (0) | 2009.01.16 |
iPhone MyViewController 추가하기 (0) | 2009.01.15 |