gpt4 book ai didi

iphone - EXC_BAD_ACCESS 在 setCollectionViewLayout 上

转载 作者:可可西里 更新时间:2023-11-01 04:53:59 25 4
gpt4 key购买 nike

如果我更改 UICollectionView 的布局在方向更改期间,我在旋转几次后得到 EXC_BAD_ACCESS

- (void)willRotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration {
UICollectionViewLayout *layout = [[UICollectionViewFlowLayout alloc] init];
self.myCollectionView.collectionViewLayout = layout; // This causes EXC_BAD_ACCESS after a few rotations
}

这是 UICollectionView 错误吗?还是我做错了什么?如果这是一个错误,是否有任何方法可以在方向更改期间更改整个布局?

我注意到这个 answer 中提到了同样的问题.使用 NSZombies 进行调试不会产生额外的信息。

最佳答案

不太确定它有什么作用,但 Release Notes for iOS 6说:

The willRotateToInterfaceOrientation:duration:, willAnimateRotationToInterfaceOrientation:duration:, and didRotateFromInterfaceOrientation: methods are no longer called on any view controller that makes a full-screen presentation over itself—for example, presentViewController:animated:completion:

You should make sure that your apps are not using these methods to manage the layout of any subviews. Instead, they should use the view controller’s viewWillLayoutSubviews method and adjust the layout using the view’s bounds rectangle.

由于您使用的是 UICollectionView 可能 它与您使用此方法更改其布局有关。

关于iphone - EXC_BAD_ACCESS 在 setCollectionViewLayout 上,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13181879/

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