我是iOS新手。我練習Objective-C並製作了自定義的UITableViewCell。它有一定的高度,而不是它的默認高度,即高度是120.但是當我運行該程序時,單元格顯示爲默認高度。我只寫了一些代碼,如下所示,我使用xib來設計自定義單元格。如果需要,我可以分享截圖。由於自定義UITableViewCell不全顯示
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *CellIdentifier = @"CustomCell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
NSArray *topLevelObjects = [[NSBundle mainBundle] loadNibNamed:@"CustomCell" owner:self options:nil];
cell = [topLevelObjects objectAtIndex:0];
}
return cell;
}
編輯在我的項目我還沒有實現heightforrowatindexpath方法之一。爲什麼我必須在另一個項目中實施。是必要的?請指導。