iOS5:如何防止 rectForRowAtIndexPath 方法出现异常
例外:
在无效索引路径处请求矩形
代码:
CGRect rect = [tableView rectForRowAtIndexPath:[NSIndexPath indexPathForRow:i inSection:0]];
修复:
if ([tableView numberOfRowsInSection:0] <= i) {
return;
}
也许存在更好的方式
Exception:
request for rect at invalid index path
Code:
CGRect rect = [tableView rectForRowAtIndexPath:[NSIndexPath indexPathForRow:i inSection:0]];
Fix:
if ([tableView numberOfRowsInSection:0] <= i) {
return;
}
Maybe exist the better way
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
通常 rectForRowAtIndexPath 可以按照文档状态处理无效的indexPath,但在IOS 7.1中,它不能正确处理无效的indexPath。因此传入 nil 会导致崩溃并收到错误消息:
总之,对于 rectForRowAtIndexPath 需要手动进行 nil 检查。
Usually rectForRowAtIndexPath could handle invalid indexPath as document states, but in IOS 7.1, it does not handle invalid indexPath properly. So passing in nil would cause crash and get the error message:
In a word, manually do a nil check is necessary for rectForRowAtIndexPath.