2011-02-09 38 views
0

我们如何整合的UIScrollView,UIView的,在TextView的TableviewCell.for例如,如果我们按下按钮,这是在的tableview细胞中,UITextView的一定要来该小区下......(它不会去到下一页)..视图在单元格下方?

+0

你可以发布一些代码来说明你想要实现什么吗? – futureelite7 2011-02-09 11:28:13

回答

1

你需要在被点击的单元格下添加一个新的单元格。这个新单元将在其内容视图中显示UITextview

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