Xcode UIKIT错误字符串

Xcode UIKIT错误字符串,xcode,debugging,crash-log,Xcode,Debugging,Crash Log,我在应用程序中使用Crashlytics。下面是我的事故日志,我经历了一段艰难的时光 我得到了错误 哇!排得太低了。。。!24小时59分钟是最大计时器间隔,例如 现在 这是一个与UIKIT相关的错误 对如何修复它有什么建议吗 ... CoreFoundation __exceptionPreprocess + 162 1 libobjc.A.dylib objc_exception_throw + 32 2 CoreFoundation +[NSException r

我在应用程序中使用Crashlytics。下面是我的事故日志,我经历了一段艰难的时光

我得到了错误

哇!排得太低了。。。!24小时59分钟是最大计时器间隔,例如 现在

这是一个与UIKIT相关的错误

对如何修复它有什么建议吗

 ...
CoreFoundation  
__exceptionPreprocess + 162
1    libobjc.A.dylib    
objc_exception_throw + 32
2    CoreFoundation 
+[NSException raise:format:]
3    Foundation 
-[NSAssertionHandler handleFailureInMethod:object:file:lineNumber:description:] + 90
4    UIKit  
-[UIDatePickerView _updateRowInColumn:toValue:withRepeatingAmount:element:animated:] + 538
5    UIKit  
-[UIDatePickerView _loadDateAnimated:] + 264
6    UIKit  
-[UIDatePickerView _updateBitsForDate:forced:andReload:animateIfNeeded:] + 696
7    UIKit  
-[UIDatePickerView _setDate:animated:forced:] + 348
8    UIKit  
-[UIDatePickerView setDate:animated:] + 30
9    UIKit  
-[UIDatePicker setDate:] + 36
10   App ✭   EditAccountViewController.m line 571
-[EditAccountViewController textFieldDidBeginEditing:] + 571
11   UIKit  
-[UITextField _becomeFirstResponder] + 402
12   UIKit  
-[UIResponder becomeFirstResponder] + 336
13   UIKit  
-[UITextInteractionAssistant setFirstResponderIfNecessary] + 174
14   UIKit  
-[UITextInteractionAssistant oneFingerTap:] + 1608
15   UIKit  
_UIGestureRecognizerSendActions + 106
16   UIKit  
-[UIGestureRecognizer _updateGestureWithEvent:] + 304
17   UIKit  
___UIGestureRecognizerUpdate_block_invoke_0541 + 48
18   UIKit  
_UIGestureRecognizerApplyBlocksToArray + 176
19   UIKit  
_UIGestureRecognizerUpdate + 898
20   UIKit  
_UIGestureRecognizerUpdateGesturesFromSendEvent + 28
21   UIKit  
-[UIWindow _sendGesturesForEvent:] + 774
22   UIKit  
-[UIWindow sendEvent:] + 88
23   UIKit  
-[UIApplication sendEvent:] + 356
24   UIKit  
_UIApplicationHandleEvent + 5826
25   GraphicsServices   
PurpleEventCallback + 882
26
...
CoreFoundation  
__CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE1_PERFORM_FUNCTION__ + 38
32   UIKit  
UIApplicationMain + 1080
33   App     main.m line 15
main + 15
34   App    
 start
应用程序告诉我崩溃的原因如下

_birthDatePicker.date = _birthDate;

尝试使用TestFlight或Critercism等崩溃报告程序,将事件跟踪添加到崩溃报告中,这对我重现崩溃非常有帮助:


苹果公司确认这是他们的一个错误。

我提出了完全相同的问题。将
0002-11-30 00:00:00+0000
设置为DatePicker.date时,“哇!”刚刚出现。我所能做的就是强制将此类日期设置为类似于
1900-11-30 00:00:00+0000的值,以避免崩溃。非常感谢如果有人有任何想法。我给苹果发了电子邮件,他们说这是错误和uikit中的错误。。。我们无能为力,至少我们现在知道原因了。我的问题是因为将一个
0000-00-00 00:00:00+0000
,一个零日期存储到核心数据,而数据库似乎只是自动将其存储为
0002-11-30 00:00+0000