2014-04-30 4 views

답변

1

는 다음과 같이 수행

#pragma mark - Table View 
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath 
{ 
    Item *object = listData[indexPath.row]; 


    if (object.buttonClicked) { 
     return 300; 
    }else{ 
     return 100; 
    } 

} 
+0

버튼이 셀에 탭 때 어떻게이 행의 높이를 변경합니까? reloadData이 버튼을 탭 akashg 권리 물론 – rmaddy

+1

이 작업을 수행 할 수 있습니다. – ZeMoon

+0

예 후 호출되는 경우 –

관련 문제