打开页面后如何自动滚动到UIViewController的底部?
目前,当我打开页面时,它一直滚动到顶部..但我需要它在底部,因为这是最新消息的位置
表格视图的快捷方式:
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return self.dataArr.count
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "messages") as! UITableViewCell
cell.selectionStyle = .none
let message = cell.viewWithTag(100) as! UILabel
let name = cell.viewWithTag(101) as! UILabel
let data = self.dataArr[indexPath.row] as! [String:AnyObject]
message.text = " " + String(describing: data["message"]!) + " "
name.text = String(describing: data["name"]!)
return cell
}
func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
var mapStr = ""
let data = self.dataArr[indexPath.row] as! [String:AnyObject]
let message = String(describing: data["message"]!)
let array = message.components(separatedBy: "\n") as! [String]
let arrayLoc = message.components(separatedBy: "Location: ") as! [String]
if arrayLoc.count > 0 {
mapStr = arrayLoc[1]
}
print(mapStr)
if mapStr.count > 0 {
self.open(scheme: mapStr)
}
}
}
答案 0 :(得分:5)
let indexPath = NSIndexPath(item: noOfRows, section: 0)
yourTableView.scrollToRow(at: indexPath as IndexPath, at: UITableViewScrollPosition.bottom, animated: true)
答案 1 :(得分:2)
这在Swift 4中对我有用
我已经重写了UITableViewController类的viewDidAppear函数。
override func viewDidAppear(_ animated: Bool) {
let scrollPoint = CGPoint(x: 0, y: self.tableView.contentSize.height - self.tableView.frame.size.height)
self.tableView.setContentOffset(scrollPoint, animated: false)
}
感谢这篇文章 Scroll all the way down to the bottom of UITableView作为答案,请注意,问题并不完全相同,它们在reloadData上向下滚动,而不是在屏幕上出现。