- (void)_startTimerThread
{
// Tableview delegate로 다른 클래스에서 호출해오기
NSLog(@" 세션수 = %d ", [self.tbl numberOfSections] );
NSLog(@" 세션의 행수 = %d ", [self.tbl numberOfRowsInSection:0] );
NSLog(@" NSIndexPath 만들기 =%@ ", [NSIndexPath indexPathForRow:0 inSection:0] );
NSLog(@" 현재 선택된 행 =%d ", [[self.tbl indexPathForSelectedRow] row] );
NSLog(@" 현재 선택된 세션 =%d ", [[self.tbl indexPathForSelectedRow] section] );
// CellForRow에서 이미 정의된 Cell 을 다른 클래스에서 일회성 사용
static NSString *CellTableIdentifier = @"Cell";
UINib *nib = [UINib nibWithNibName:@"CustomCellA" bundle:nil];
[tbl registerNib:nib forCellReuseIdentifier:CellTableIdentifier];
CustomCell *cell = [tbl dequeueReusableCellWithIdentifier:CellTableIdentifier];
NSLog(@"cell text = %@" , cell.userTextLabel.text);
NSLog(@"cell text = %@" , [messages objectAtIndex:[[self.tbl indexPathForSelectedRow]row]]);
}
'개발도구 > iOS - 아이폰 개발' 카테고리의 다른 글
[ios] 값 주고 받기 - 값 넘기기 (0) | 2012.12.05 |
---|---|
[ios] 테이블셀 이미지때문에 느려짐 LazyTableImages (0) | 2012.11.30 |
[ios] 시간계산 date (0) | 2012.11.19 |
[iOS]GestureRecognizer 터치이벤트 와 테이블에 적용방법 (0) | 2012.11.19 |
[ios] llvm-gcc-4.2 failed with exit code 1 (0) | 2012.11.13 |