티스토리 뷰
TableControlViewController.h 파일 소스 (사용할 배열 정의)
──────────────────────
#import <UIKit/UIKit.h>
@interface TableControlViewController : UIViewController {
NSArray *listData;
}
@property (nonatomic, retain) NSArray *listData;
@end
──────────────────────TableControlViewController.m 파일 소스
──────────────────────
#import "TableControlViewController.h"
@implementation TableControlViewController
@synthesize listData;
/*
중간에 주석처리된 메소드들은 생략
*/
// Implement viewDidLoad to do additional setup after loading the view, typically from a nib.
// viewDidLoad는 뷰가 모두 로드되었을때 실행되는 메소드
- (void)viewDidLoad {
listData = [NSArray arrayWithObjects:@"권태성", @"KWON TAE SEONG", @"tskwon.tistory.com", @"facebook.com/kwontaeseong", nil];
[super viewDidLoad];
}
- (void)didReceiveMemoryWarning {
// Releases the view if it doesn't have a superview.
[super didReceiveMemoryWarning];
// Release any cached data, images, etc that aren't in use.
}
- (void)viewDidUnload {
// Release any retained subviews of the main view.
// e.g. self.myOutlet = nil;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return [listData count] ;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
//indexPath를 이용해 각 테이블에 접근 할 수 있음
static NSString *cIdentifier = @"cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cIdentifier];
//dequeueReusableCellWithIdentifier 테이블 로우가 많아 내려갈때 갱신될때 새로 만들어진 행이 이전과 같을때는
//굳이 다시 보여줄 필요가 없으니 재사용 하기위해 정의할때 사용하는 메소드
if(cell == nil)
{
cell = [[[UITableViewCell alloc]
initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cIdentifier]autorelease];
}
cell.textLabel.text = [listData objectAtIndex:indexPath.row];
return cell;
}
- (void)dealloc {
[listData release];
[super dealloc];
}
@end
컴파일 후 시뮬레이터를 실행하면 이런 모양의 테이블이 나옵니다.
'헉!! > iOS' 카테고리의 다른 글
[iOS 개발] pickerView:numberOfRowsInComponent (0) | 2011.09.14 |
---|---|
[iOS 개발] TableView를 사용할 경우 행이 선택되었는지 확인해주는 메소드 (1) | 2011.08.04 |
[iOS 개발] IBAction을 사용하여 View 전환하기 (4) | 2011.07.22 |
[iOS 개발] Xcode의 기본적인 화면구성 (2) | 2011.07.21 |
[iOS 개발] 아이폰 화면에 Hello World를 찍다 (0) | 2011.07.20 |
- Total
- Today
- Yesterday
- Programming
- jQuery
- Objective C
- JSP
- iPhone
- MAC OSX 10.7
- iOS 개발
- 아이폰 어플리케이션
- JavaScript
- Objective-C
- tomcat
- 아이폰 개발
- Java
- MySQL
- 자바스크립트
- 오브젝티브 C
- oracle
- Object C
- 오브젝트 C
- 제이쿼리
- Spring
- zero
- IT
- 자바
- iBATIS
- 아이폰
- 티스토리챌린지
- Spring Framework
- 오블완
- SQL
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |