- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的应用程序有大约 30 个活跃用户和 500 多个注册用户,这个问题只发生在一个使用 iPhone 6 的 9.2 用户身上。
我从崩溃报告中可以看出她已经发生了 60 多次崩溃,并且她说问题有时是正常的,而其他时候则不是。
我这里有相同的测试设备,没有发生任何问题。
我无法从 fabric 的崩溃报告详细信息中获得太多信息,但崩溃发生在以下方法中,应用程序在该方法的final else 中崩溃,我可以从她对问题的描述:
func tableView(tableView: UITableView, heightForRowAtIndexPath indexPath: NSIndexPath) -> CGFloat
{
let bounds = UIScreen.mainScreen().bounds
var screenWidth = bounds.size.width
let screenHeight = bounds.size.height
if indexPath.row == 0 {
let font = UIFont(name: "Helvetica Neue", size: 17.0)
let heightCalc = heightForView(self.postDescription!, font: font!, width: screenWidth - 32)
if self.photoWidth != nil{
let imageAspectRatio = self.photoWidth!/self.photoHeight!
var imageViewFrameHeight = screenWidth/imageAspectRatio
if self.portBool {
if imageViewFrameHeight > (screenHeight - 64) {
screenWidth = screenWidth * 0.60
imageViewFrameHeight = imageViewFrameHeight * 0.60
}
}
return imageViewFrameHeight + 136 + heightCalc + 26
//return 557
}
else{
return 136 + heightCalc + 30
}
}
else if indexPath.row == 1 {
return 50.0
}
else if indexPath.row == 2{
return 40.0
}
else{
if self.commentsDetailed != nil && self.commentsDetailed!.count >= (indexPath.row - 3)
{
let commentsDetailed = self.commentsDetailed![indexPath.row-3]
let font = UIFont(name: "Helvetica Neue", size: 14.0)
let heightCalc = heightForView(commentsDetailed.comment!, font: font!, width: screenWidth - 51)
if commentsDetailed.authorId == Prefs.userId.description {
return 45 + heightCalc + 40 + 30
//return 131.5
}
else{
return 45 + heightCalc + 40
//return 101.5
}
}
else {
return 80.0
}
}
}
对于那些想知道的人,我需要计算高度以避免在我使用表格 View 自动尺寸时发生的抖动滚动。所以我只需要解决这里的问题,而不是切换方法。
来自 crashlytics 的一些信息:
EXC_BREAKPOINT
Thread : Crashed: Thread
0 ProjectName 0x10008a64c specialized NewFeedDetailedController.tableView(UITableView, heightForRowAtIndexPath : NSIndexPath) -> CGFloat (NewFeedDetailedController.swift)
1 ProjectName 0x100085258 @objc NewFeedDetailedController.tableView(UITableView, heightForRowAtIndexPath : NSIndexPath) -> CGFloat (NewFeedDetailedController.swift)
2 UIKit 0x187683638 __66-[UISectionRowData refreshWithSection:tableView:tableViewRowData:]_block_invoke + 396
3 UIKit 0x187641818 -[UISectionRowData refreshWithSection:tableView:tableViewRowData:] + 3948
4 UIKit 0x1876407d4 -[UITableViewRowData rectForFooterInSection:heightCanBeGuessed:] + 412
5 UIKit 0x187640590 -[UITableViewRowData heightForTable] + 64
6 UIKit 0x18764039c -[UITableView _updateContentSize] + 220
7 UIKit 0x1878a6f60 -[UITableView _rebuildGeometry] + 44
8 UIKit 0x1876462c8 -[UITableView didMoveToWindow] + 144
9 UIKit 0x18755705c -[UIView(Internal) _didMoveFromWindow:toWindow:] + 1496
10 UIKit 0x18757c568 -[UIScrollView _didMoveFromWindow:toWindow:] + 92
11 UIKit 0x187556d7c -[UIView(Internal) _didMoveFromWindow:toWindow:] + 760
12 UIKit 0x187556310 __45-[UIView(Hierarchy) _postMovedFromSuperview:]_block_invoke + 152
13 Foundation 0x183189500 -[NSISEngine withBehaviors:performModifications:] + 168
14 UIKit 0x187556194 -[UIView(Hierarchy) _postMovedFromSuperview:] + 532
15 UIKit 0x187563b80 -[UIView(Internal) _addSubview:positioned:relativeTo:] + 1784
16 UIKit 0x187755600 -[_UIParallaxDimmingView didMoveToWindow] + 180
17 UIKit 0x18755705c -[UIView(Internal) _didMoveFromWindow:toWindow:] + 1496
18 UIKit 0x187556d7c -[UIView(Internal) _didMoveFromWindow:toWindow:] + 760
19 UIKit 0x187556310 __45-[UIView(Hierarchy) _postMovedFromSuperview:]_block_invoke + 152
20 Foundation 0x183189500 -[NSISEngine withBehaviors:performModifications:] + 168
21 UIKit 0x187556194 -[UIView(Hierarchy) _postMovedFromSuperview:] + 532
22 UIKit 0x187563b80 -[UIView(Internal) _addSubview:positioned:relativeTo:] + 1784
23 UIKit 0x1877f5db4 __53-[_UINavigationParallaxTransition animateTransition:]_block_invoke_2 + 1656
24 UIKit 0x18756a964 +[UIView(Animation) performWithoutAnimation:] + 80
25 UIKit 0x187755118 __53-[_UINavigationParallaxTransition animateTransition:]_block_invoke + 260
26 UIKit 0x187870840 +[UIView(Internal) _performBlockDelayingTriggeringResponderEvents:] + 220
27 UIKit 0x187754c90 -[_UINavigationParallaxTransition animateTransition:] + 1060
28 UIKit 0x18770e6a0 -[UINavigationController _startCustomTransition:] + 3544
29 UIKit 0x18761a9b8 -[UINavigationController _startDeferredTransitionIfNeeded:] + 688
30 UIKit 0x18761a694 -[UINavigationController __viewWillLayoutSubviews] + 60
31 UIKit 0x18761a5fc -[UILayoutContainerView layoutSubviews] + 208
32 UIKit 0x187557778 -[UIView(CALayerDelegate) layoutSublayersOfLayer:] + 656
33 QuartzCore 0x184f66b2c -[CALayer layoutSublayers] + 148
34 QuartzCore 0x184f61738 CA::Layer::layout_if_needed(CA::Transaction*) + 292
35 QuartzCore 0x184f615f8 CA::Layer::layout_and_display_if_needed(CA::Transaction*) + 32
36 QuartzCore 0x184f60c94 CA::Context::commit_transaction(CA::Transaction*) + 252
37 QuartzCore 0x184f609dc CA::Transaction::commit() + 512
38 UIKit 0x18754dc78 _afterCACommitHandler + 180
39 CoreFoundation 0x182820588 __CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION__ + 32
40 CoreFoundation 0x18281e32c __CFRunLoopDoObservers + 372
41 CoreFoundation 0x18281e75c __CFRunLoopRun + 928
42 CoreFoundation 0x18274d680 CFRunLoopRunSpecific + 384
43 GraphicsServices 0x183c5c088 GSEventRunModal + 180
44 UIKit 0x1875c4d90 UIApplicationMain + 204
45 ProjectName 0x1001663b0 main (AppDelegate.swift:21)
46 libdyld.dylib 0x1822ee8b8 start + 4
还有 heightForView 函数:
func heightForView(text:String, font:UIFont, width:CGFloat) -> CGFloat{
let label:UILabel = UILabel(frame: CGRectMake(0, 0, width, CGFloat.max))
label.numberOfLines = 0
label.lineBreakMode = NSLineBreakMode.ByWordWrapping
label.font = font
label.text = text
label.sizeToFit()
return label.frame.height
}
更新代码检查是否为 nil,但仍然会导致用户崩溃:
func tableView(tableView: UITableView, heightForRowAtIndexPath indexPath: NSIndexPath) -> CGFloat
{
let bounds = UIScreen.mainScreen().bounds
var screenWidth = bounds.size.width
let screenHeight = bounds.size.height
if indexPath.row == 0 {
CLSLogv("crashing in indexPath.Row = 0 %@", getVaList(["returning 50.0 here"]))
let font = UIFont(name: "Helvetica Neue", size: 17.0)
if let description = self.postDescription {
let heightCalc = heightForView(description, font: font!, width: screenWidth - 32)
if self.photoWidth != nil && self.photoHeight != nil {
CLSLogv("crashing in indexPath.Row = 0 %@", getVaList(["inside photowidth is not nil"]))
let imageAspectRatio = self.photoWidth!/self.photoHeight!
var imageViewFrameHeight = screenWidth/imageAspectRatio
if self.portBool {
if imageViewFrameHeight > (screenHeight - 64) {
screenWidth = screenWidth * 0.60
imageViewFrameHeight = imageViewFrameHeight * 0.60
}
}
return imageViewFrameHeight + 136.0 + heightCalc + 26.0
//return 557
}
else{
CLSLogv("crashing in indexPath.Row = 0 %@", getVaList(["when photowidth is nil"]))
return 136.0 + heightCalc + 30.0
}
}
else{
CLSLogv("crashing in indexPath.Row = 0 %@", getVaList(["unable to unwrap self.postDescription"]))
if self.photoWidth != nil && self.photoHeight != nil {
let imageAspectRatio = self.photoWidth!/self.photoHeight!
var imageViewFrameHeight = screenWidth/imageAspectRatio
if self.portBool {
if imageViewFrameHeight > (screenHeight - 64) {
screenWidth = screenWidth * 0.60
imageViewFrameHeight = imageViewFrameHeight * 0.60
}
}
return imageViewFrameHeight + 136.0 + 26.0
}
else{
return 136.0 + 30.0
}
}
}
else if indexPath.row == 1 {
CLSLogv("crashing in indexPath.Row = 1 %@", getVaList(["returning 50.0 here"]))
return 50.0
}
else if indexPath.row == 2 {
CLSLogv("crashing in indexPath.Row = 2 %@", getVaList(["returning 40.0 here"]))
return 40.0
}
else{
if self.commentsDetailed != nil && self.commentsDetailed!.count > (indexPath.row - 3)
{
if let commentsDetailed = self.commentsDetailed?[indexPath.row-3]{
let font = UIFont(name: "Helvetica Neue", size: 14.0)
if let comment = commentsDetailed.comment{
let heightCalc = heightForView(comment, font: font!, width: screenWidth - 51)
if commentsDetailed.authorId == Prefs.userId.description {
return 45.0 + heightCalc + 40.0 + 30.0
}
else{
return 45.0 + heightCalc + 40.0
}
}
else{
if commentsDetailed.authorId == Prefs.userId.description {
return 45.0 + 40.0 + 30.0
}
else{
return 45.0 + 40.0
}
}
}
else {
CLSLogv("in the else for defining commentsDetailed %a",getVaList(["commentsdetailed"]))
return 80.0
}
}
else {
CLSLogv("in the condition for checking commentsDetailed = nil - true %a", getVaList(["CRASH RELATED TO RETURNING 80 IF ARRAY IS NIL?"]))
return 80.0
}
}
}
最佳答案
我认为第二个 else 唯一可能失败的点是 commentsDetailed.comment!
展开,如果它等于 nil,它应该会失败。其余的看起来非常健壮,包括 heightForView
方法。如果检查 commentsDetailed.comment != nil
不起作用,我会开始认为这是一些随机的 9.2 早期错误...
关于ios - heightForRowAtIndexPath 间歇性崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34285246/
我在Web应用程序中使用WebRTC进行音频播放。因为我是WebRTC的新手,所以我使用@https://webrtc.github.io/samples/src/content/peerconnec
上下文 我的 VBA 代码经常替换工作簿中的工作表。因此,我无法直接在工作表模块中使用代码,因为它最终会在此过程中被删除。 我使用用户定义的类来处理我的事件(强烈受到 Chip Pearson's w
我已经搜索过这个问题,如果这个问题已经得到解答,我深表歉意(我很高兴被重定向),但具体来说,我们的问题是间歇性的。 我们的客户提示当事件从我们的软件发送到他们的手机时,通知音频间歇性地没有“响起”。它
背景故事优先: 我们有一个正在运行的部署在尝试使用 JMeter 等工具对其进行负载测试时遇到间歇性 502。它是一个将 POST 数据记录到另一个容器上的 mysql 数据库的容器。它每秒处理大约
在向我托管的 https://网站发出简单的 GET 请求时,我不断收到间歇性 SecureChannelFailure 错误。没有错误进入服务器日志文件。每 100 次调用的频率小于 1 个错误,但
我正在通过 eval 运行一些 JavaScript(我知道,开枪吧),它基本上枚举了文档对象上的所有属性。我的问题是,虽然它在 firebug 中工作,但从脚本运行时,它在 Firefox 中抛出未
我发现了这个关于 iBeacon 的教程 (http://www.appcoda.com/ios7-programming-ibeacons-tutorial/),我觉得很有趣。我已经下载了他们的源代
我在我的开发箱上本地运行 WCF 服务,我的测试检查该服务一切正常。 通常,一切都很好,但有时(5% 的时间),我会收到错误 The requested service, 'net.tcp://csm
我正在使用 django 和 jQuery 构建一个网络应用程序,并且在其中一个页面上 $(document).com('click'... 事件间歇性地触发。我在结帐队列中有一个项目列表,以及删除每
Excepcion:com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure ...
我正在尝试对 MySQL 5.5 数据库执行一系列检查/插入操作,但我经常遇到间歇性的 SIGSEGV 错误问题。在执行许多查询的过程中,SELECT 语句运行得很好。然而,在经过一些可变的时间或执行
我每天至少发生一次崩溃,我似乎真的无法理解。它似乎在随机时刻发生在我身上,我无法追踪堆栈来理解它发生的原因。如果有人能为我指出正确的方向,甚至向我展示一些关于如何正确追踪值的在线文档和教程,那将是完美
我尝试用一些更简单的函数重现它,但没有成功。所以下面的代码显示了我们的生产服务器抛出的 KeyError 的相关方法,很多。 class PokerGame: ... def serial
我们有一个托管在 Windows 服务中的 WCF 服务和一个访问该服务的非线程客户端。该服务正在执行对 SQL Server 2008 数据库的数据访问。间歇性地在客户端发生以下异常: System
我们有一个 SSL 问题,我 99% 认为这不是您通常使用的证书信任存储旋转木马。 我们有一个 Weblogic 服务器试图通过 LDAPS 与 Active Directory 建立 SSL 连接,
我有一个复杂的经典 ASP 系统,多年来运行良好,但最近开始出现奇怪的间歇性问题。 在某些表单上,人们会报告说他们点击了“提交”,但表单只是自行重置(或者,浏览器可能只是重新加载了表单——我的用户可能
我在编译顶点着色器时遇到间歇性错误,为新创建的 OpenGL 上下文的首次渲染做准备。它是通常在相同硬件上运行的相同顶点着色器。失败后,glGetShaderInfoLog 返回的信息日志通常显示如下
我有一个目前看来无法解决的 EXC_BAD_ACCESS 问题。我试过启用 NSZombie,这似乎是许多帖子中的建议,但我处理的是 c 指针而不是 obj c 对象,所以我没有获得任何有用的调试信息
在 iOS 上出现间歇性 SSL 错误。我已经关闭了 ATS,我们知道这也会发生在操作系统版本 < iOS9 上 Error Domain=NSURLErrorDomain Code=1011 "An
我有一个使用 RequireJS 的相当大的 Backbone.js 项目。随着项目规模的增长(这里的“规模”指的是独立模块文件的数量),间歇性错误开始出现。大多数情况下,这是一个对象错误: 未捕获的
我是一名优秀的程序员,十分优秀!