gpt4 book ai didi

ios - 奇怪的 UITableView 错误

转载 作者:行者123 更新时间:2023-11-30 13:02:05 25 4
gpt4 key购买 nike

我正在制作一个应用程序(我的第一个应用程序,哇!),我收到一个错误,当我加载表格 View 时我似乎无法修复该错误。

我有一个工作正常的初始 ViewController。我有一个按钮,它连接到指向 UITableView 的导航 Controller 。我的 UITableView 子类的 tableView:numberOfRowsInSection 覆盖似乎存在问题。

这是设置表的代码:

override func numberOfSections(in tableView: UITableView) -> Int {
return 1
}

override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return 2
}

当我加载 TableView 场景时,我在应用程序委托(delegate)中收到“signalSIGABRT”错误。

错误似乎出现在 numberOfRowsInSection 方法中,因为当我将其注释掉时,错误不会出现,而我只是得到一个空表。

在调试中,我在该方法的“return 2”行设置了一个断点,它在那里停止而没有崩溃。从那里我还没有真正取得进展:我点击了“Step Over”,它把我带到了一个屏幕,我对这一切都太陌生,无法理解,充满了这样的行:

UIKit`-[UITableView _numberOfRowsInSection:]:
0x10641a23e <+0>: pushq %rbp
0x10641a23f <+1>: movq %rsp, %rbp
0x10641a242 <+4>: pushq %r15
0x10641a244 <+6>: pushq %r14
0x10641a246 <+8>: pushq %r12
0x10641a248 <+10>: pushq %rbx
0x10641a249 <+11>: movq %rdx, %r14
0x10641a24c <+14>: movq %rdi, %r15
0x10641a24f <+17>: movq 0x101d2e2(%rip), %rdi ; UITableView._dataSource
0x10641a256 <+24>: addq %r15, %rdi
0x10641a259 <+27>: callq 0x106eca892 ; symbol stub for: objc_loadWeakRetained
0x10641a25e <+32>: movq %rax, %r12
0x10641a261 <+35>: movq 0xfe3300(%rip), %rsi ; "tableView:numberOfRowsInSection:"
0x10641a268 <+42>: movq %r12, %rdi
0x10641a26b <+45>: movq %r15, %rdx
0x10641a26e <+48>: movq %r14, %rcx
0x10641a271 <+51>: callq *0xd0afe1(%rip) ; (void *)0x00000001044f7ac0: objc_msgSend
-> 0x10641a277 <+57>: movq %rax, %rbx
0x10641a27a <+60>: movq %r12, %rdi
0x10641a27d <+63>: callq *0xd0afdd(%rip) ; (void *)0x00000001044f4d20: objc_release
0x10641a283 <+69>: xorl %eax, %eax
0x10641a285 <+71>: testq %rbx, %rbx
0x10641a288 <+74>: cmovsq %rax, %rbx
0x10641a28c <+78>: movq %rbx, %rax
0x10641a28f <+81>: popq %rbx
0x10641a290 <+82>: popq %r12
0x10641a292 <+84>: popq %r14
0x10641a294 <+86>: popq %r15
0x10641a296 <+88>: popq %rbp
0x10641a297 <+89>: retq

当我点击“继续”时,它实际上并没有进展,这看起来很奇怪。

无论如何,我希望有人能提供帮助。

以下是一些可能会或可能不会说明任何情况的背景信息:我最初编写了这个应用程序的大部分内容,然后通过 XCode8 将其更新到 Swift 3。我不知道这会产生什么影响,不幸的是我忘记了我是否在 Swift 3 或之前编写了应用程序的这一部分(这会导致问题)。我从 Kevin McNeisch 的“面向非程序员的 iOS 应用程序开发”系列书籍中学习了编码,并且之前我的主要业务 Controller 在此应用程序中作为他的 mmBusinessObject 的子类。但 Swift 3 破坏了 mmBusinessObject,所以我将它们更改为 NSManagedObjects,一切正常。我的意思是,到目前为止我还没有访问过任何实体表;这个问题似乎与应用程序的这些部分没有任何关系,但我想无论如何我都会包含这些信息。

谢谢!乔纳森

编辑:显然我是个n00b,我什至不知道如何回复评论! (我点击“添加评论”,它把我带到了页面顶部,但页面上没有任何变化)

感谢您的评论。回应:

关于 cellForRowAtIndexPath:使用 numberOfSections、numberOfRowsInSection 和 cellForRowAtIndexPath,我收到错误当 cellForRowAtIndexPath 被注释掉(并且其他两个处于事件状态)时,我收到错误。当 numberOfRowsInSection 被注释掉(并且其他两个处于事件状态)时,我得到一个空表。

关于委托(delegate)/数据源:我的 ViewController 是 UITableViewController 的子类,因此如果我尝试将其设置为数据源或委托(delegate)协议(protocol),它会说它是多余的。在 Storyboard View 中,Table View 的 delegate 和数据源都设置为“Browse Songs”,这是 tableview 的名称;如果我选择场景顶部的黄色图标,数据源和委托(delegate)都会列为“ TableView ”。这些都是自动发生的(也就是说,我自己没有做,它就在那里),我认为这就是它应该的样子?

关于 ViewController:我猜您指的是当前存在问题的 Controller ?这是下面的代码。请记住,这链接到从导航 Controller 创建的 TableView 。另外,当我(从对象库)简单地将其创建为 TableView 时,部分/行方法可以正常工作,但我遇到了布局问题,并且无论如何我都想要导航。

import UIKit

class SongListViewController2: UITableViewController {

override func viewDidLoad() {
super.viewDidLoad()
}

override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
}

override func numberOfSections(in tableView: UITableView) -> Int {
return 2
}

// override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
// return 2
// }

// Error seems to be caused by numberOfRowsInSection method


override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "reuseIdentifier", for: indexPath)

// Configure the cell...
cell.textLabel?.text = "Hello world"
return cell
}

最佳答案

我猜您没有像我附加的图像一样在表格 View 单元格中设置Identifier。检查你的 Storyboard。前任。表格 View -> 表格 View 单元格

enter image description here

关于ios - 奇怪的 UITableView 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39807969/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com