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
}
精彩评论