gpt4 book ai didi

objective-c - UIScrollView setContentSize 因未捕获的 NSRangeException 而崩溃

转载 作者:可可西里 更新时间:2023-11-01 05:37:48 26 4
gpt4 key购买 nike

在一些 UIScrollView 的内容被删除后调用 setContentSize 使应用程序崩溃。

int toolbarHeight = [[[self navigationController] toolbar] frame].size.height;
int navbarHeight = [[[self navigationController] navigationBar] frame].size.height;

int totalHeight = toolbarHeight + navbarHeight;
// contentWidth is 640
CGSize contentSize = CGSizeMake(contentWidth, [scrollView frame].size.height - totalHeight);

[scrollView setContentSize:contentSize]; // Crash happens here, contentSize is perfectly valid

* Terminating app due to uncaught exception 'NSRangeException', reason: '* -[__NSArrayM objectAtIndex:]: index 1 beyond bounds [0 .. 0]'

这可能是什么原因造成的?

编辑:这是为那些能理解它的人准备的堆栈跟踪:

* thread #1: tid = 0x1c03, 0x34d2e32c libsystem_kernel.dylib`__pthread_kill + 8, stop reason    = signal SIGABRT
frame #0: 0x34d2e32c libsystem_kernel.dylib`__pthread_kill + 8
frame #1: 0x36c2a20e libsystem_c.dylib`pthread_kill + 54
frame #2: 0x36c2329e libsystem_c.dylib`abort + 94
frame #3: 0x308eff6a libc++abi.dylib`abort_message + 46
frame #4: 0x308ed34c libc++abi.dylib`_ZL17default_terminatev + 24
frame #5: 0x36361356 libobjc.A.dylib`_objc_terminate + 146
frame #6: 0x308ed3c4 libc++abi.dylib`_ZL19safe_handler_callerPFvvE + 76
frame #7: 0x308ed450 libc++abi.dylib`std::terminate() + 20
frame #8: 0x308ee824 libc++abi.dylib`__cxa_rethrow + 88
frame #9: 0x363612a8 libobjc.A.dylib`objc_exception_rethrow + 12
frame #10: 0x34e9050c CoreFoundation`CFRunLoopRunSpecific + 404
frame #11: 0x34e9036c CoreFoundation`CFRunLoopRunInMode + 104
frame #12: 0x3618c438 GraphicsServices`GSEventRunModal + 136
frame #13: 0x31f86e7c UIKit`UIApplicationMain + 1080
frame #14: 0x0000cb50 App`main + 152 at main.m:16

最佳答案

好像是content offset超出content size时抛出的异常。

I had views side by side in the scroll view and the offset was to the last view.

+------+------+------+
| | |offset|
+------+------+------+

Now the last view is removed and the content size changed to a smaller one.

+------+------+
| | |offset
+------+------+

The offset is left behind.

我更改了代码,以便先移动偏移量,然后更改内容大小。

+------+------+
| |offset|
+------+------+

到目前为止没有崩溃。

关于objective-c - UIScrollView setContentSize 因未捕获的 NSRangeException 而崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12105467/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com