UIScrollView setContentSize crashes with uncaught NSRangeException
问题 Call to setContentSize crashes the application after some of the UIScrollView's contents have been removed. 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