私はリストアプリケーションを作成しようとしており、TableViewとTextViewの組み合わせを使用しています。私はデータを含むグループとgroupsItem配列を持っています。私はこれらの配列を使用してテーブルビューを生成します。TextViewを使用したTableView:次のTextviewに移動しますか?
ユーザーが「enter」を押すと、配列に追加してテーブルをリロードします。それはうまくいっていますが、問題は次のtextViewに移動するためにtextViewフォーカスを取得できないことです。次のtextViewは常に 'nil'です。私はtableViewがリロードしている間にそれをやろうとしているからだと感じています。何か案は?
class TableViewController: UITableViewController, UITextViewDelegate {
var groups = [String]()
var groupItems = [[String]]()
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.
tableView.estimatedRowHeight = 44
tableView.rowHeight = UITableViewAutomaticDimension
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
func textViewDidChange(_ textView: UITextView) {
tableView.beginUpdates()
tableView.endUpdates()
}
override func tableView(_ tableView: UITableView, titleForHeaderInSection section: Int) -> String? {
return groups[section]
}
override func numberOfSections(in tableView: UITableView) -> Int {
return groups.count
}
override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return groupItems[section].count
}
override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "Cell", for: indexPath) as! ExpandingCell
cell.textView.delegate = self
cell.textView.tag = indexPath.row
cell.textView?.text = groupItems[indexPath.section][indexPath.row]
return cell
}
func textView(_ textView: UITextView, shouldChangeTextIn range: NSRange, replacementText text: String) -> Bool {
if(text == "\n") {
// On enter add to second last item in array
groupItems[groupItems.count - 1].insert(textView.text, at: groupItems[groupItems.count - 1].count - 1)
// Reload the table to reflect the new item
tableView.reloadData()
// Try to find next responder
if let nextField = textView.viewWithTag(textView.tag + 1) as? UITextView {
nextField.becomeFirstResponder()
} else {
// Not found, so remove keyboard.
textView.resignFirstResponder()
}
return false
}
return true
}
@IBAction func AddItem(_ sender: UIButton) {
groups.append("Cake")
groupItems.append([""])
tableView.reloadData()
}
}
TableViewを再度読み込む必要がありますか? Enterを押して次のテキストにナビゲートすると、データを配列に直接保存できます。 –
リロードが必要です。私はリロードの前に配列に追加しますが、hte reloadがなければ、tableviewは変更を反映しません。 –