일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Firebird
- VB.NET
- 시리얼 통신
- 셋업
- c#
- MySQL
- xml
- 예제
- 초보
- 기초
- 파라미터
- 문자열
- dll
- SQL
- 파이어버드
- 입문
- vb
- winsock
- 소니
- Visual Studio 2005
- PostgreSQL
- SDK
- Delphi
- 델파이
- WIN32 SDK
- Visual Basic
- 데이터베이스
- 설치
- 인스톨
- MFC
- Today
- Total
프로그래밍 노트
[Xcode]구구단 2단 출력하기 본문
Xcode에서 프로젝트 만들어서 간단한 프로그램을 만드는 것은 패스
구구단 2단 출력하는 소스스
ViewController.m 화일에 소스를 입력한다.
#import "ViewController.h"
@interface ViewController ()
@end
@implementation ViewController
- (void)viewDidLoad
{
[super viewDidLoad];
// 사용할 라벨 배열 정의
UILabel *lb[9];
for(int i=1; i < 10; i++){
// 라벨 초기화
lb[i] = [[UILabel alloc] init];
// 라벨 위치 설정(라벨 x좌표, 라벨 y좌표, 라벨 폭, 라벨 높이)
lb[i].frame = CGRectMake(10, i * 20, 400, 20);
// 라벨 문자열 설정
lb[i].text = [NSString stringWithFormat:
@" 2 * %d = %d", i, 2 * i];
[self.view addSubview:lb[i]];
self.view.backgroundColor = [UIColor whiteColor];
}
}
- (void)viewDidUnload
{
[super viewDidUnload];
// Release any retained subviews of the main view.
}
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
return (interfaceOrientation != UIInterfaceOrientationPortraitUpsideDown);
}
@end