滚动UITableView时发生随机崩溃

时间:2018-06-21 21:04:38

标签: ios swift uitableview crash realm

我有一个应用程序,该应用程序的tableView可以包含数百个单元格,在与Xcode断开连接时,进行简单滚动时会出现随机崩溃。

该表使用存储在Realm中的对象数组。除第0行外,大多数单元都是从该数组填充的,该行具有摘要并直接读取Realm对象。

我正在尝试复制崩溃(使用重度忍者滚动)而没有成功

这是代码段:

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
        if indexPath.row == 0 {
            let cell = tableView.dequeueReusableCell(withIdentifier: "SummaryCell", for: indexPath) as! SummaryCell
            let count = "\(ItemsManager.shared.allActiveItems.count)" // ** Read from Realm **         
            cell.labellTotal.text = count
            return cell
        } else {
            let cell = tableView.dequeueReusableCell(withIdentifier: "ItemCell", for: indexPath) as! ItemCell
            cell.labelTag.text = itemsArray[indexPath.row - 1]
            return cell
        }
    }

我将crashLog导入到Xcode / Devices中,并部分地进行了符号化,但是我不清楚如何发生。 (构建是在同一Mac上完成的)

回溯显示访问CellForRow(atIndexPath :),然后访问Realm的多个实例。我所附的日志的最后部分显示了线程0崩溃,但这不是很有用(线程0崩溃:)

有什么问题的想法吗?

这是崩溃日志的摘要:

Exception Type:  EXC_CRASH (SIGABRT)
Exception Codes: 0x0000000000000000, 0x0000000000000000
Exception Note:  EXC_CORPSE_NOTIFY
Triggered by Thread:  0

Application Specific Information:
abort() called

Filtered syslog:
None found

Last Exception Backtrace:
0   CoreFoundation                  0x184966d8c __exceptionPreprocess + 228
1   libobjc.A.dylib                 0x183b205ec objc_exception_throw + 55
2   Realm                           0x103af598c 0x1039d4000 + 1186188
3   Realm                           0x103af77c8 0x1039d4000 + 1193928
4   Realm                           0x103af7798 0x1039d4000 + 1193880
5   App Name Dev                    0x1027cd180 ItemsViewController.tableView(_:cellForRowAt:) + 1495424 (ItemsViewController.swift:274)
6   App Name Dev                    0x1027ce3ec @objc ItemsViewController.tableView(_:cellForRowAt:) + 1500140 (ItemsViewController.swift:0)
7   UIKit                           0x18e6400cc -[UITableView _createPreparedCellForGlobalRow:withIndexPath:willDisplay:] + 667


Thread 0 name:  Dispatch queue: com.apple.main-thread
Thread 0 Crashed:
0   libsystem_kernel.dylib          0x00000001843ed2ec __pthread_kill + 8
1   libsystem_pthread.dylib         0x00000001845926a8 pthread_kill$VARIANT$armv81 + 360
2   libsystem_c.dylib               0x000000018435bd0c abort + 140
3   libc++abi.dylib                 0x0000000183af72c8 __cxa_bad_cast + 0
4   libc++abi.dylib                 0x0000000183af7470 default_unexpected_handler+ 5232 () + 0
5   libobjc.A.dylib                 0x0000000183b208d4 _objc_terminate+ 35028 () + 124
6   libc++abi.dylib                 0x0000000183b1137c std::__terminate(void (*)+ 111484 ()) + 16
7   libc++abi.dylib                 0x0000000183b10f78 __cxa_rethrow + 144
8   libobjc.A.dylib                 0x0000000183b207ac objc_exception_rethrow + 44
9   CoreFoundation                  0x000000018482ce18 CFRunLoopRunSpecific + 664
10  GraphicsServices                0x0000000186811020 GSEventRunModal + 100
11  UIKit                           0x000000018e849758 UIApplicationMain + 236
12  App Name Dev                    0x0000000102702b6c main + 666476 (AppDelegate.swift:20)
13  libdyld.dylib                   0x00000001842bdfc0 start + 4

2 个答案:

答案 0 :(得分:1)

该问题可能是由于以下原因造成的:

  1. 您在错误的线程中使用Realm
  2. 您与Realm同步工作,它阻塞了主线程
  3. 您正在使用Realm异步,并且如果单元正在重用并且操作仍在进行中,则不要取消操作

答案 1 :(得分:1)

一种可能性是您使用强制转换(as!)。更改此行:

let cell = tableView.dequeueReusableCell(withIdentifier: "SummaryCell", for: indexPath) as! SummaryCell

收件人:

guard let cell = tableView.dequeueReusableCell(withIdentifier: "SummaryCell", for: indexPath) as? SummaryCell else {
  fatalError("Unable to dequeue cell with identifier 'SummaryCell'. Exiting.")
}

对另一个对tableView.dequeueReusableCell()的调用进行相同的更改。然后重新运行您的代码,看看会发生什么。

如果是强制铸造的问题,您仍然会崩溃,但是您会在控制台中看到一个非常明显的错误,告诉您崩溃的原因。