0
이 충돌 보고서를 디버깅하는 데 도움이 필요합니다. 문제는 스레드 0, 줄 22 주 (__hidden # 771_ : 18)에있는 것으로 추측합니다. 이것은 충돌을 일으키는 원인을 보여주지 않습니다. 이것은 iCloud 제작을 사용하여 테스트 할 때만 발생하며 iCloud 개발 모드를 사용하여 정상적으로 작동합니다.IOS 앱 거부 2. 1 성능 : 앱 완료
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 0x1904891b8 __exceptionPreprocess + 124
1 libobjc.A.dylib 0x18eec055c objc_exception_throw + 56
2 CoreFoundation 0x190489100 +[NSException raise:format:] + 116
3 UIKit 0x196593860 -[UICollectionView scrollToItemAtIndexPath:atScrollPosition:animated:] + 240
4 Stream It 0x10010bad8 _hidden#209_ (__hidden#771_:368)
5 Stream It 0x10010dfac _hidden#228_ (__hidden#771_:0)
6 libdispatch.dylib 0x18f3121fc _dispatch_call_block_and_release + 24
7 libdispatch.dylib 0x18f3121bc _dispatch_client_callout + 16
8 libdispatch.dylib 0x18f316d68 _dispatch_main_queue_callback_4CF + 1000
9 CoreFoundation 0x190436810 __CFRUNLOOP_IS_SERVICING_THE_MAIN_DISPATCH_QUEUE__ + 12
10 CoreFoundation 0x1904343fc __CFRunLoopRun + 1660
11 CoreFoundation 0x1903622b8 CFRunLoopRunSpecific + 444
12 GraphicsServices 0x191e16198 GSEventRunModal + 180
13 UIKit 0x1963a97fc -[UIApplication _run] + 684
14 UIKit 0x1963a4534 UIApplicationMain + 208
15 Stream It 0x10010842c main (__hidden#771_:18)
16 libdyld.dylib 0x18f3455b8 start + 4
Thread 0 name: Dispatch queue: com.apple.main-thread
Thread 0 Crashed:
0 libsystem_kernel.dylib 0x000000018f457014 __pthread_kill + 8
1 libsystem_pthread.dylib 0x000000018f51f450 pthread_kill + 112
2 libsystem_c.dylib 0x000000018f3cb400 abort + 140
3 libc++abi.dylib 0x000000018ee952d4 __cxa_bad_cast + 0
4 libc++abi.dylib 0x000000018eeb2cc0 default_unexpected_handler() + 0
5 libobjc.A.dylib 0x000000018eec0844 _objc_terminate() + 124
6 libc++abi.dylib 0x000000018eeaf66c std::__terminate(void (*)()) + 16
7 libc++abi.dylib 0x000000018eeaef84 __cxxabiv1::exception_cleanup_func(_Unwind_Reason_Code, _Unwind_Exception*) + 0
8 libobjc.A.dylib 0x000000018eec0690 _objc_exception_destructor(void*) + 0
9 CoreFoundation 0x0000000190489100 -[NSException initWithCoder:] + 0
10 UIKit 0x0000000196593860 -[UICollectionView scrollToItemAtIndexPath:atScrollPosition:animated:] + 240
11 Stream It 0x000000010010bad8 _hidden#209_ (__hidden#771_:0)
12 Stream It 0x000000010010dfac _hidden#228_ (__hidden#771_:0)
13 libdispatch.dylib 0x000000018f3121fc _dispatch_call_block_and_release + 24
14 libdispatch.dylib 0x000000018f3121bc _dispatch_client_callout + 16
15 libdispatch.dylib 0x000000018f316d68 _dispatch_main_queue_callback_4CF + 1000
16 CoreFoundation 0x0000000190436810 __CFRUNLOOP_IS_SERVICING_THE_MAIN_DISPATCH_QUEUE__ + 12
17 CoreFoundation 0x00000001904343fc __CFRunLoopRun + 1660
18 CoreFoundation 0x00000001903622b8 CFRunLoopRunSpecific + 444
19 GraphicsServices 0x0000000191e16198 GSEventRunModal + 180
20 UIKit 0x00000001963a97fc -[UIApplication _run] + 684
21 UIKit 0x00000001963a4534 UIApplicationMain + 208
22 Stream It 0x000000010010842c main (__hidden#771_:18)
23 libdyld.dylib 0x000000018f3455b8 start + 4
당신은 약간 거꾸로 읽습니다. :) 당신의 코드에서 뭔가가'scrollToItem'을 호출 할 때 에러가 발생합니다. (그것이 NSException이 발생한 곳입니다.) 예외 코드는 - 어쩌면 - 당신이하지 말아야 할 때 0 또는 빈 값을 전달하고 있음을 암시합니다. –