作者热门文章
- objective-c - iOS 5 : Can you override UIAppearance customisations in specific classes?
- iphone - 如何将 CGFontRef 转换为 UIFont?
- ios - 以编程方式关闭标记的信息窗口 google maps iOS
- ios - Xcode 5 - 尝试验证存档时出现 "No application records were found"
我正在使用 tableview 显示消息,我使用了下面的代码
UIView *chatView = [self bubbleView:[NSString stringWithFormat:@"%@", message] from:YES];
[self.chatArray addObject:[NSDictionary dictionaryWithObjectsAndKeys:message, @"text", @"self", @"speaker", chatView, @"view", nil]];
[self.chatTableView reloadData];
[self.chatTableView scrollToRowAtIndexPath:[NSIndexPath indexPathForRow:[self.chatArray count]-1 inSection:0]
atScrollPosition: UITableViewScrollPositionBottom
animated:YES];
我收到下面给出的错误
[UITableView _contentOffsetForScrollingToRowAtIndexPath:atScrollPosition:]: row (0) beyond bounds (0) for section (0).'
请帮我解决这个问题
最佳答案
在我看来,您的 TableView 中还没有任何行或部分。我想到了两种可能性。
numberOfRowsInSection
委托(delegate)和 numberOfSectionsInTableView
,确保它们未设置为 0。tableview
还没有加载完数据。请分享您的发现,以便在需要时我可以提供进一步的帮助。
关于ios - [UITableView _contentOffsetForScrollingToRowAtIndexPath :atScrollPosition:],我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26647387/
我正在使用 tableview 显示消息,我使用了下面的代码 UIView *chatView = [self bubbleView:[NSString stringWithFormat:@"%@",
我刚刚在我的 Xcode 项目中实现了 AGPhotoBrowser 类,但出现以下错误: Terminating app due to uncaught exception 'NSRangeExce
我是一名优秀的程序员,十分优秀!