17

我的应用程序发生严重崩溃 -

CALayer position contains NaN: [377.833 nan] 

使用以下堆栈 -

Fatal Exception: CALayerInvalidGeometry
0  CoreFoundation                 0x18283afe0 __exceptionPreprocess
1  libobjc.A.dylib                0x18129c538 objc_exception_throw
2  CoreFoundation                 0x18283af28 -[NSException initWithCoder:]
3  QuartzCore                     0x185b50acc CA::Layer::set_position(CA::Vec2<double> const&, bool)
4  QuartzCore                     0x185b50c48 -[CALayer setPosition:]
5  QuartzCore                     0x185b51198 -[CALayer setFrame:]
6  UIKit                          0x1889657a8 -[UIView(Geometry) setFrame:]
7  UIKit                          0x188979364 -[UIImageView _setViewGeometry:forMetric:]
8  UIKit                          0x1889c6c38 -[UIScrollView _adjustScrollerIndicators:alwaysShowingThem:]
9  UIKit                          0x188abfb34 -[UIScrollView(UIScrollViewInternal) _adjustForAutomaticKeyboardInfo:animated:lastAdjustment:]
10 WebKit                         0x18c14af3c -[WKWebView _keyboardChangedWithInfo:adjustScrollView:]
11 CoreFoundation                 0x1827d55f4 __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__
12 CoreFoundation                 0x1827d4d08 _CFXRegistrationPost
13 CoreFoundation                 0x1827d4a84 ___CFXNotificationPost_block_invoke
14 CoreFoundation                 0x1828437a8 -[_CFXNotificationRegistrar find:object:observer:enumerator:]
15 CoreFoundation                 0x18271895c _CFXNotificationPost
16 Foundation                     0x18322a930 -[NSNotificationCenter postNotificationName:object:userInfo:]
17 UIKit                          0x1893500e4 -[UIInputWindowController postStartNotifications:withInfo:]
18 UIKit                          0x189352350 __77-[UIInputWindowController moveFromPlacement:toPlacement:starting:completion:]_block_invoke.907
19 UIKit                          0x188a383cc -[UIInputViewAnimationStyle launchAnimation:afterStarted:completion:forHost:fromCurrentPosition:]
20 UIKit                          0x189351dc8 -[UIInputWindowController moveFromPlacement:toPlacement:starting:completion:]
21 UIKit                          0x1893588b0 -[UIInputWindowController setInputViewSet:]
22 UIKit                          0x189351494 -[UIInputWindowController performOperations:withAnimationStyle:]
23 UIKit                          0x188a30d94 -[UIPeripheralHost(UIKitInternal) setInputViews:animationStyle:]
24 UIKit                          0x1890f7160 -[_UIRemoteKeyboards keyboardChanged:shouldConsiderSnapshottingKeyboard:isLocalEvent:]
25 UIKit                          0x1890f6e8c __37-[_UIRemoteKeyboards

查看用户的日志,我发现了一些常见的事情 -

  1. 所有用户都在一个包含 WKWebView 的视图控制器中
  2. 所有日志都指出应用程序在崩溃前获得了“applicationWillResignActive”
  3. 堆栈显示键盘已打开,但我们不必在该视图控制器上打开键盘
  4. 所有用户都是 iOS 10.3 +

唯一适合的场景是用户在应用程序具有可见的 WKWebView 时收到 iMessage 并强制触摸它以获得快速答案。我们测试了这种情况,然后 BOOOM 应用程序崩溃了。

所以我们找到了崩溃,但我们不知道发生了什么。任何人都面临过这个问题或知道它可能是什么?

谢谢

4

3 回答 3

2

不确定它是否对您有帮助。我也遇到了 NAN 问题,如果任何值损坏或无效,就会发生这种情况。因此,如果您可以找出您的值在哪里损坏意味着它正在打印 NAN,那么您可以在上面放置保护语句。

于 2017-07-28T03:23:56.220 回答
2

(1)首先仔细检查您的布局是否正确,使用“自动布局”并确保您的约束是正确的并且您正在设置正确的子视图。

尝试直观地调试布局,看看是否有任何奇怪的事情发生。

调试->查看调试->捕获视图层次结构。

(2)从堆栈跟踪中,我注意到键盘出现了,因此,需要调整视图以为键盘腾出位置。值得注意的是,一旦消息到达堆栈跟踪,就会发生这种情况。

我也会尝试辞职FirstResponder,也许在你的AppDelegate

- (void)applicationWillResignActive:(UIApplication *)application {
   [_wkWebView resignFirstResponder];
}

(3)我还发现有一个错误,WKWEbView 不会 resignFirstResponder.. 这可能与此有关:

错误 167898 - [iOS] -[WKWebView becomeFirstResponder] 和 -[WKWebView resignFirstResponder] 在发生非编程的第一响应者更改时不会被调用

也许一种解决方法是在您的应用程序退出后立即呈现另一个视图。

- (void)applicationWillResignActive:(UIApplication *)application {
    // if _wkWebView is showing then hide and show other view
}
于 2017-07-28T12:09:50.057 回答
0

set the CG_NUMERICS_SHOW_BACKTRACE environmental variable in the Xcode run scheme and it will dump the stacktrace that caused the non-numeric value to occur.

于 2017-07-30T11:51:55.000 回答