Фиксированная высота для UITableViewCell

#iphone #uitableview #height

#iPhone #uitableview #высота

Вопрос:

У меня есть UITableView, и я хочу, чтобы каждая ячейка имела фиксированную высоту в 50 пикселей, как это можно сделать в Xcode4?

Вот мой tableview, загруженный из файла XIB

 - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {

    static NSString *CellIdentifier = @"Cell";

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if (cell == nil) {
        cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
    }
  

Ответ №1:

 - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
     return 50;
}