일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- 문자열
- 예제
- c#
- vb
- VB.NET
- PostgreSQL
- 설치
- SQL
- 파이어버드
- 입문
- dll
- Firebird
- 파라미터
- 기초
- MFC
- 초보
- Visual Studio 2005
- 델파이
- winsock
- SDK
- 소니
- 셋업
- WIN32 SDK
- MySQL
- xml
- 시리얼 통신
- Delphi
- 인스톨
- Visual Basic
- 데이터베이스
- Today
- Total
프로그래밍 노트
[Xcode] 간단한 버튼 만들기 본문
버튼을 눌렀을 때와 뗐을 때 라벨의 내용을 변경
//
// ViewController.m
// ButtonTest
//
#import "ViewController.h"
@interface ViewController ()
@end
@implementation ViewController
{
UILabel *lb;
UIButton *bt;
}
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
lb = [[UILabel alloc] init];
lb.text = @"버튼 테스트";
[lb sizeToFit];
bt = [UIButton buttonWithType:UIButtonTypeRoundedRect];
[bt setTitle:@"테스트" forState:UIControlStateNormal];
bt.frame = CGRectMake(0, 0, 100, 100);
bt.center = self.view.center;
[bt addTarget:self action:@selector(bt_down:)
forControlEvents:UIControlEventTouchDown];
[bt addTarget:self action:@selector(bt_up:)
forControlEvents:UIControlEventTouchUpInside];
self.view.backgroundColor = [UIColor whiteColor];
[self.view addSubview:lb];
[self.view addSubview:bt];
}
- (IBAction)bt_down:(UIButton *)sender
{
lb.text = @"눌렸다";
[lb sizeToFit];
}
- (IBAction)bt_up:(UIButton *)sender
{
lb.text = @"뗐다";
[lb sizeToFit];
}
- (void)viewDidUnload
{
[super viewDidUnload];
// Release any retained subviews of the main view.
}
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
return (interfaceOrientation != UIInterfaceOrientationPortraitUpsideDown);
}
@end