Expandable tableView in iphone

前端 未结 12 1760
离开以前
离开以前 2020-11-27 17:53

\"enter

I want to make this type of expandable/collapsible table vie

12条回答
  •  不知归路
    2020-11-27 18:53

    Check this Link :

    http://iostechnotips.blogspot.in/2014/05/expandable-uitableview.html

    -(UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
    

    *Use UITableView delegate method viewForHeaderInSection and return a custom UIView.

    *Add a UIButton as subview with action "expandable:(id)sender" check the sender id as section number and reload the table view.

提交回复
热议问题