我试图弄清楚当数据库中的消息加载到UITableView后,如何滚动到UITableView的底部。我已尝试使用tableView.setContentOffset(CGPointMake(0, CGFloat.max), animated: true)
,但我的表格从拥有其中的所有消息到根本没有。我也试过了
var iPath = NSIndexPath(forRow: messagesArray.count - 1, inSection: 0)
tableView.scrollToRowAtIndexPath(iPath, atScrollPosition: UITableViewScrollPosition.Bottom, animated: true)
但我得到EXC_BAD_ACCESS code = 1
。任何帮助将不胜感激。
编辑:
在Parse从query.findObjectsInBackgroundWithBlock(...)中找到数据之后,我立即将此代码放入我的viewDidAppear()函数中,不确定这是否有所不同。
这是查询代码:
query.findObjectsInBackgroundWithBlock { (object, error) -> Void in
if (error == nil) {
for var i = 0; i < object!.count; i++ {
var messageObject = Messages()
messageObject.messageID = object![i]["messageID"] as! String
println("MESSAGE ID")
println(messageObject.messageID)
messageObject.messageText = object![i]["message"] as! NSString as String
println("MESSAGE TEXT")
println(messageObject.messageText)
messageObject.recipientID.append(object![i]["recipientID"] as! NSString as String)
println("RECIPIENT")
println(messageObject.recipientID[0])
messageObject.senderID = object![i]["senderID"] as! NSString as String
messageObject.timeStamp = object![i]["timeStamp"] as! NSString as String
println("TIMESTAMP")
println(messageObject.timeStamp)
dispatch_async(dispatch_get_main_queue(), { () -> Void in
self.messagesArray.append(messageObject)
})
}
self.loadObjects()
self.tableView.reloadData()
self.tableView.setContentOffset(CGPointMake(0, CGFloat.max), animated: true)
}
}
答案 0 :(得分:2)
试试这个
- (void) viewDidAppear:(BOOL)animated
{
[super viewDidAppear:animated];
if (tableView.contentSize.height > tableView.frame.size.height)
{
CGPoint offset = CGPointMake(0, tableView.contentSize.height -tableView.frame.size.height);
[tableView setContentOffset:offset animated:YES];
}
}
IN SWIFT
if tableView.contentSize.height > tableView.frame.size.height
{
let offset = CGPoint(x: 0, y: tableView.contentSize.height - tableView.frame.size.height)
tableView.setContentOffset(offset, animated: true)
}
答案 1 :(得分:2)
请尝试这个
在Objective-c
中 NSInteger bottomRow = [self.dataArr count] - 1; // this is your count's array.
if (bottomRow >= 0) {
NSIndexPath *indexPath = [NSIndexPath indexPathForRow:bottomRow inSection:0];
[self.tblview scrollToRowAtIndexPath:indexPath
atScrollPosition:UITableViewScrollPositionTop animated:animated];
}
in swift
var bottomRow : NSInteger = dataArr.count-1;
if (bottomRow >= 0) {
var indexPath : NSIndexPath = NSIndexPath(forRow: bottomRow, inSection: 0)
tblview.scrollToRowAtIndexPath(indexPath, atScrollPosition: UITableViewScrollPosition.Bottom, animated: true)
}
答案 2 :(得分:2)
我打电话给下面的方法,它对我有用。但是,请务必在重新加载tableview之前调用它。
[tableView setContentOffset:CGPointMake(0, CGFLOAT_MAX)];
[tableView reloadData];
希望它会对你有所帮助。
答案 3 :(得分:0)
表格加载后,请在几次后滚动。
- (void)viewDidApear{
//Please convert it into swift.
[self performSelector:@selector(scrollToBottom:) withObject:nil afterDelay:0.5];
}
- (void)scrollToBottom:(id)sender{
// Scroll to bottom here
var iPath = NSIndexPath(forRow: messagesArray.count - 1, inSection: 0)
tableView.scrollToRowAtIndexPath(iPath, atScrollPosition: UITableViewScrollPosition.Bottom, animated: true)
}