일반적으로 테이블뷰를 사용할때 아래 코드를 사용한다. - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { static NSString *cellIndentifier = @"ExampleCell"; UITableViewCell *cell = [tableViewdequeueReusableCellWithIdentifier: cellIndentifier]; if(cell == nil) { NSArray *bundleObjects = [[NSBundle mainBundle]loadNibNamed: cellIndentifier owner:nil options:nil]; cell =..