我用 IB 创建了 uitableview。我设计了自己的 uitableviewcell(它是 uiatbleviewcell 的子类,有自己的 xib 文件)。如何将其添加到我的 uitableview 中?
我试过了
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath
*)indexPath {
static NSString *CellIdentifier = @"myCell";
myCell *cell = (myCell *)[tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
NSArray *xib = [[NSBundle mainBundle] loadNibNamed:@"myCell" owner:self options:nil];
cell = [xib objectAtIndex:0];
}
// Configure the cell...
cell.title.text = @"tableCell";
cell.preview.text = @"preview";
cell.postedTime.text = @"right now";
return cell;
}
它工作不正确。我不能在这里包含图片,因为我的代表是 10 (需要最少 11 来上传图片)。所以这里是显示我糟糕结果的链接。这就是我想要的:http: //img708.imageshack.us/img708/5082/20120903153930.png
这就是我所拥有的:http: //img836.imageshack.us/img836/5844/20120903154405.png