开发者

Views Below the cell?

开发者 https://www.devze.com 2023-02-09 05:27 出处:网络
How can we integrate UIScrollview,UIView,Textview under TableviewCell.for example if we press button which is in 开发者_运维问答tableview cell, the UITextview must come under that cell…(it wont go to

How can we integrate UIScrollview,UIView,Textview under TableviewCell.for example if we press button which is in 开发者_运维问答tableview cell, the UITextview must come under that cell…(it wont go to the Next Page)..


You would need to add a new cell under the one that was clicked. This new cell would have on its content view the UITextview.

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
// Insert the new cell containing the text view on indexPath.row+1
}
0

精彩评论

暂无评论...
验证码 换一张
取 消