我正在尝试使用两个不同的自定义单元格创建一个UITableViewController。我看过很多帖子,最值得注意的是this,建议使用两个不同的reuseidentifier。我这样做,我似乎仍然得到第一个自定义单元格的大小。它没有显示第二个单元格的标签等,但大小似乎是相同的。数据显示不同,但单元格大小相同。
由于我不知道问题出在哪里,我可能会包含更多必要的代码,所以我提前道歉。
这是我的TableViewController代码:
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
// Return the number of sections.
return 1;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
// Return the number of rows in the section.
//set equal to the information in the array
return [jsonDataArray count];
}
- (void) addHeaderAndFooter
{
UIView *v = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 320, 1)];
v.backgroundColor = [UIColor clearColor];
//[self.tableView setTableHeaderView:v];
[self.tableView setTableFooterView:v];
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *SCellIdentifier = @"SCell";
static NSString *PCellIdentifier = @"PCell";
NSLog(@"%@",indexPath);
NSLog(@"JSONDATAARRAY: %i", jsonDataArray.count);
NSDictionary *jsoninfo = [jsonDataArray objectAtIndex:indexPath.row];
if (indexPath.row == 0)
{
OBPromoCell *cell = nil;
cell = [tableView dequeueReusableCellWithIdentifier:PCellIdentifier forIndexPath:indexPath];
if (cell == nil) {
cell = [[OBPromoCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:PCellIdentifier];
}
//get required keys from dictionary and assign to vairables
NSString *title = [jsoninfo objectForKey:@"title"];
NSString *subtitle = [jsoninfo objectForKey:@"subtitle"];
NSURL *imageURL = [NSURL URLWithString:[jsoninfo objectForKey:@"image_URL"]];
//download the images. This will most lilely need to be made asynchronous.... I don't think it is now.
NSData *imgData = [NSData dataWithContentsOfURL:imageURL];
UIImage *img = [[UIImage alloc] initWithData:imgData];
//fill in text to cells
cell.CustomCellTopLabel.text = title;
cell.CustomCellBottomLabel.text = subtitle;
cell.CellImageView.image = img;
return cell;
}
else
{
OBStandardCell *cell = nil;
cell = [tableView dequeueReusableCellWithIdentifier:SCellIdentifier forIndexPath:indexPath];
if (cell == nil) {
cell = [[OBStandardCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:SCellIdentifier];
}
//get required keys from dictionary and assign to vairables
NSString *title = [jsoninfo objectForKey:@"title"];
NSString *subtitle = [jsoninfo objectForKey:@"subtitle"];
NSURL *imageURL = [NSURL URLWithString:[jsoninfo objectForKey:@"series_image_URL"]];
//download the images. This will most lilely need to be made asynchronous.... I don't think it is now.
NSData *imgData = [NSData dataWithContentsOfURL:imageURL];
UIImage *img = [[UIImage alloc] initWithData:imgData];
//fill in text to cells
cell.CustomCellTopLabel.text = title;
cell.CustomCellBottomLabel.text = subtitle;
cell.CellImageView.image = img;
return cell;
}
}
以下是我的故事板如何设置以供参考的图像。同样,它们确实有不同的reuseidentifier:
感谢您的帮助!!!
答案 0 :(得分:1)
几乎你已经完成了这些事情。问题与数据显示有关。
您需要实现UITableView的“heightForRowAtIndexPath”方法,并根据单元格显示设置高度。
Method:
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
希望它能解决你的问题。
干杯。
答案 1 :(得分:0)
UITableView有一个属性
@property(nonatomic) CGFloat rowHeight
你可以设置它,但它会为你表中的所有行设置高度,
如果你想要不同的行高,你应该实现UITableViewDelegate的这个方法
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath