SWIFT ОТВЕТ
Укажите, какой раздел и строку вы хотите изменить (помните, что счет начинается с 0, а не 1) в методе heightForRowAtIndexPath
.
override func tableView(tableView: UITableView, heightForRowAtIndexPath indexPath: NSIndexPath) -> CGFloat{
if indexPath.section == 0 && indexPath.row == 0{
return 150
}
return 44.0
}