iOS5:如何防止 rectForRowAtIndexPath 方法出现异常

发布于 2024-12-12 18:24:46 字数 312 浏览 0 评论 0原文

例外:

在无效索引路径处请求矩形

代码:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

桃扇骨 2024-12-19 18:24:46

通常 rectForRowAtIndexPath 可以按照文档状态处理无效的indexPath,但在IOS 7.1中,它不能正确处理无效的indexPath。因此传入 nil 会导致崩溃并收到错误消息:

在无效索引路径处请求矩形(
{长度= 2,路径= 0 - 0})

总之,对于 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:

request for rect at invalid index path (
{length = 2, path = 0 - 0})

In a word, manually do a nil check is necessary for rectForRowAtIndexPath.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文