- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的代码中有一个奇怪的崩溃,它在准备 UITableViewCell
时崩溃了。 .崩溃报告不令人满意的原因是什么。
Crashed: com.apple.main-thread
0 Quickride 0x104c2434c specialized NotificationViewController.tableView(_:cellForRowAt:) (NotificationViewController.swift:222)
1 Quickride 0x104c1fdcc @objc NotificationViewController.tableView(_:cellForRowAt:) (NotificationViewController.swift)
2 UIKitCore 0x1c7abc540 -[UITableView _createPreparedCellForGlobalRow:withIndexPath:willDisplay:] + 684
3 UIKitCore 0x1c7abca88 -[UITableView _createPreparedCellForGlobalRow:willDisplay:] + 80
4 UIKitCore 0x1c7a88160 -[UITableView _updateVisibleCellsNow:isRecursive:] + 2256
5 UIKitCore 0x1c7aa604c -[UITableView layoutSubviews] + 140
6 UIKitCore 0x1c7d3aea4 -[UIView(CALayerDelegate) layoutSublayersOfLayer:] + 1380
7 QuartzCore 0x19ecbac70 -[CALayer layoutSublayers] + 184
8 QuartzCore 0x19ecbfc00 CA::Layer::layout_if_needed(CA::Transaction*) + 324
9 UIKitCore 0x1c7d26390 -[UIView(Hierarchy) layoutBelowIfNeeded] + 548
10 UIKitCore 0x1c723a6d0 -[UINavigationController _layoutViewController:] + 1296
11 UIKitCore 0x1c7234dc4 -[UINavigationController _layoutTopViewController] + 236
12 UIKitCore 0x1c7232f94 -[UINavigationController navigationTransitionView:didEndTransition:fromView:toView:] + 780
13 UIKitCore 0x1c7cf5fd8 -[UINavigationTransitionView _notifyDelegateTransitionDidStopWithContext:] + 420
14 UIKitCore 0x1c7cf6294 -[UINavigationTransitionView _cleanupTransition] + 588
15 UIKitCore 0x1c7d04154 -[UIViewAnimationState sendDelegateAnimationDidStop:finished:] + 312
16 UIKitCore 0x1c7cffb90 +[UIViewAnimationState popAnimationState] + 336
17 UIKitCore 0x1c7cf5d1c -[UINavigationTransitionView transition:fromView:toView:] + 1864
18 UIKitCore 0x1c723b4e0 -[UINavigationController _startTransition:fromViewController:toViewController:] + 2656
19 UIKitCore 0x1c723babc -[UINavigationController _startDeferredTransitionIfNeeded:] + 1184
20 UIKitCore 0x1c723cdbc -[UINavigationController __viewWillLayoutSubviews] + 164
21 UIKitCore 0x1c721efac -[UILayoutContainerView layoutSubviews] + 224
22 UIKitCore 0x1c7d3aea4 -[UIView(CALayerDelegate) layoutSublayersOfLayer:] + 1380
23 QuartzCore 0x19ecbac70 -[CALayer layoutSublayers] + 184
24 QuartzCore 0x19ecbfc00 CA::Layer::layout_if_needed(CA::Transaction*) + 324
25 QuartzCore 0x19ec1e718 CA::Context::commit_transaction(CA::Transaction*) + 340
26 QuartzCore 0x19ec4d04c CA::Transaction::commit() + 608
27 QuartzCore 0x19ec4deb4 CA::Transaction::observer_callback(__CFRunLoopObserver*, unsigned long, void*) + 92
28 CoreFoundation 0x19a6577a8 __CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION__ + 32
29 CoreFoundation 0x19a65243c __CFRunLoopDoObservers + 412
30 CoreFoundation 0x19a6529dc __CFRunLoopRun + 1264
31 CoreFoundation 0x19a6521cc CFRunLoopRunSpecific + 436
32 GraphicsServices 0x19c8c9584 GSEventRunModal + 100
33 UIKitCore 0x1c7895054 UIApplicationMain + 212
34 Quickride 0x104b9968c main (AppDelegate.swift:29)
35 libdyld.dylib 0x19a112bb4 start + 4
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
if notifications.count <= indexPath.row{
return tableView.dequeueReusableCell(withIdentifier: "non_action") as!NotificationWithActionTableViewCell
}
let notification = notifications[indexPath.row]
let notificationHandler = NotificationHandlerFactory.getNotificationHandler(clientNotification: notification)
var cell:NotificationWithActionTableViewCell?
if notification.isActionRequired == true && notification.isActionTaken == false{
if (notificationHandler!.getPositiveActionNameWhenApplicable(userNotification: notification) != nil || notificationHandler!.getNegativeActionNameWhenApplicable(userNotification: notification) != nil || notificationHandler!.getNeutralActionNameWhenApplicable(userNotification: notification) != nil){
cell = tableView.dequeueReusableCell(withIdentifier: "action") as? NotificationWithActionTableViewCell
handleUnReadNotification(cell: cell!, notification: notification,notificationHandler : notificationHandler!, indexPath : indexPath as NSIndexPath)
}else{
cell = tableView.dequeueReusableCell(withIdentifier: "non_action") as? NotificationWithActionTableViewCell
cell!.iboDetail.textColor = UIColor(netHex: 0x3c3c3c)
cell!.notifictionRowBackGround.backgroundColor = UIColor(netHex: 0xffffcc)
}
}else{
cell = tableView.dequeueReusableCell(withIdentifier: "non_action") as? NotificationWithActionTableViewCell
handleReadNotification(cell: cell!, notification: notification)
}
cell!.setNotificationIconAndTitle(notificationHandler: notificationHandler, notification: notification)
cell!.iboTimeStamp.text = DateUtils.getTimeStringFromTimeInMillis(timeStamp: Double(notification.time!)*1000, timeFormat: DateUtils.DATE_FORMAT_dd_MMM_hh_mm_aaa)
if notification.sendFrom != 0{
cell?.iboNotificationIcon?.isUserInteractionEnabled = true
cell?.iboNotificationIcon?.tag = indexPath.row
cell?.iboNotificationIcon?.addGestureRecognizer(UITapGestureRecognizer(target: self, action: #selector(NotificationViewController.notificaitonIconTapped(_:))))
}
else{
cell?.iboNotificationIcon?.isUserInteractionEnabled = false
}
return cell!
}
cell!.iboDetail.textColor = UIColor(netHex: 0x3c3c3c)
最佳答案
崩溃的原因是在上一行
cell = tableView.dequeueReusableCell(withIdentifier: "non_action") as? NotificationWithActionTableViewCell
cell
正在
nil
.当表格 View 无法出列时,您必须自己创建单元格。
dequeueReusableCell(withIdentifier:forIndexPath:)
相反,像其他人一样,你永远不会得到
nil
并且不会出现问题。
关于ios - UITableViewCell 崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53663430/
我是 Swift 开发新手,正在学习许多在线教程。这些教程中的大多数都引用了 Xcode 上的旧版本,并且代码会导致错误。谁能解释为什么下面的代码会产生“UITableViewCell”?无法转换为
我在我的单元格中使用 AutoLayout,但是,当单元格内有大文本并且单元格展开时,单元格似乎与下面的单元格重叠。图像显示了这是如何重叠单元格的: UITableViewCell:
我的函数接受类型为 (cell: UITableViewCell, item: AnyObject) -> () 的函数作为参数。 我的问题是,当我尝试将具有 UITableViewCell 的子类
我正在尝试做一些相当简单的事情,但我看不到最好的方法。我有一个带有两个单元格的 uitableview,第一个在 contextview 中有一个 uitextfield,输入 View 设置为 ui
我在使用 Swift 时遇到了一些挑战。 我有一个带有原型(prototype)单元的 UITableView。有3个单元格前两个包含用户填写的文本字段。第三个包含一个提交按钮。 非常简单! 我的问题
我是 Objective C 的新手。我有一个问题。 我使用自定义的tableviewcell。我正确地使用 JSON 列出了数据。 我想将点击的数据传递到新 View 的自定义表格 View 。 所
我有两个单元格,比方说我的应用程序中的单元格 A 和单元格 B。它们都有自己的类,class CellA : UITableViewCell 和 class CellB : UITableViewCe
我有一个 UIViewController,它根据屏幕上的所需选项实例化一些 UITableViewCell。这些选项之一是“说明”,我创建了一个 .XIB 文件来在屏幕上显示说明。但是,在此屏幕上,
我正在尝试创建一个 tableview,其中有一个 uitableviewcell(cell1) 的子类,其中包含一个按钮等。当在 cell1 中单击该按钮时,该按钮应该在其正下方添加和删除 uita
在使用 UITableView 编码时,我遇到了这个我无法理解的错误。我的表格有 3 行,每行设置 50 像素,但第二行除外,我将其设置为 500 像素,它填满整个屏幕。当我向下滚动到底部时,问题出现
UITableViewCell 反射(reflect)两种不同的状态:突出显示和选定。 对我来说,它们听起来相同,那么到底有什么区别? 最佳答案 突出显示发生在触地时。 选定发生在触摸时,然后调用di
我刚刚添加了屏幕截图。它是定制单元吗?正如我所见,“ map ”是右对齐的,“1800”是左对齐的。我该如何创建它? 最佳答案 它确实看起来像一个自定义单元格。因为 UITableViewCell 继
我不太了解 tableview 的整体行为: 我有一个带有我在 Storyboard中定义的动态单元格(reuseIdentifier:单元格)的表格 View 。除此之外,我还有两个使用两个 nib
我有一个带有以下代码的 UITableViewCell,其中用户单击 UITableViewCell 上的“保存”按钮。单元格中的图像已保存,“保存”按钮动画消失,但单元格仍然存在。 -(UIT
我有一个UITableView,每个单元格都包含一个UIImageView 和一个UIButton。点击按钮后我启动相机,我正在尝试更新该单元格索引路径中的 UIImageView 。到目前为止,这是
有谁知道如何在进入编辑模式时从分组的 UITableView 中隐藏多个单元格?当退出编辑模式时,我希望这些行以动画效果隐藏,就像在“联系人”应用程序中看到的那样。 如您所知,在联系人编辑模式下,行数
我在 UITableViewCell 中有一个 subview ,其中包含一个 UILabel 和一个 UIButton。当我按下按钮时,它出于某种原因取消选择 UITableViewCell。 有没
我一直在经历在 UItableViewCell 中设置 UIDatePicker 的过程,当选择其上方的 UITableViewCell 时会显示该 UIDatePicker,然后在选择 UITabl
我必须集成从代码中以编程方式生成的 UITableViewCell,如下所示: UITableViewCell *newCell = [[UITableViewCell alloc] initWith
我现在正在学习 iOS 开发中的 UITableView 类,我想在导航到多个 UITableViewCells 的部分中实现点击一个 UITableViewCell,该附件类型用于复选标记,我应该怎
我是一名优秀的程序员,十分优秀!