好吧,有很多关于如何添加 TableView、工具栏等的资源......这里是您想要做什么的概述。
在 ViewController 的视图中,向其中添加一个 UITableView,但请记住,您希望在 ViewController 的视图中为屏幕底部的工具栏留出空间。所以相应地设置 tableView.frame 。
查找如何添加 UIToolbar(http://stackoverflow.com/a/7712240/1457445 是一个好的开始)然后如何添加 UIBarButtonItem(http://stackoverflow.com/questions/5383906/how-to-add -uibarbuttonitem-in-uitoolbar-in-code)
至于在 UITableViewCell 中添加 textView,只需调用 [tableView.contentView addSubview:yourTextView]; 同样,自定义 UITableViewCells 有很多帮助(http://stackoverflow.com/questions/4238760/how-to-make-a-uitableviewcell-with-a-uitextview-inside-that-dynamically-adjust)
最重要的是,您需要弄清楚如何将 textview 单元格添加到表格中 - 另一个很棒的 SO 帖子(http://stackoverflow.com/questions/5824998/uitableview-adding-cells-dynamically)