첨부파일은 해당 위치의 정보를 tableView로 보여주는 소스이다.
http://developer.apple.com/library/ios/#samplecode/CurrentAddress/Introduction/Intro.html%23//apple_ref/doc/uid/DTS40009469
에서 받을 수도 있다.
[h파일]
@interface menuTable : UIViewController<UITableViewDelegate, UITableViewDataSource> {
UITableView *tableView;
}
@property (nonatomic, retain) UITableView *tableView;
[m파일]
@synthesize tableView;
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return 2;//셀 개수
}
// Customize the appearance of table view cells.
- (UITableViewCell *)tableView:(UITableView *)table cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *kPlacemarkCellID = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:kPlacemarkCellID];
if (cell == nil)
{
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle
reuseIdentifier:kPlacemarkCellID] autorelease];
}
CGRect frame = cell.textLabel.frame;
frame.size.width = 200;
cell.textLabel.frame = frame;
cell.detailTextLabel.text = @"레이블제목";
cell.textLabel.text = @"레이블내용";
return cell;
}
댓글 달기