0
searchControllerの行の高さを迅速に変更するにはどうすればよいですか?私はsearchControllerでテーブルビューを設定していますが、私は行の高さを少し高くしたいと思います。それは素晴らしいだろう。スウィフトでUISearcherController行の高さを変更する方法
searchControllerの行の高さを迅速に変更するにはどうすればよいですか?私はsearchControllerでテーブルビューを設定していますが、私は行の高さを少し高くしたいと思います。それは素晴らしいだろう。スウィフトでUISearcherController行の高さを変更する方法
// swift 2.3
1. set tableView delegate
tableView.delegate = self
2. implementes the delegate method
extension ViewController: UITableViewDelegate {
func tableView(tableView: UITableView,
heightForRowAtIndexPath indexPath: NSIndexPath) -> CGFloat {
return 50
}
}
// swift 3.0
1. set tableView delegate
tableView.delegate = self
2. implementes the delegate method
extension ViewController: UITableViewDelegate {
func tableView(_ tableView: UITableView,
heightForRowAt indexPath:IndexPath) -> CGFloat {
return 200
}
}
スウィフト2.3で書き込みできますか? –