gpt4 book ai didi

ios - viewDidLoad 在初始化之后被调用

转载 作者:行者123 更新时间:2023-11-28 22:14:33 25 4
gpt4 key购买 nike

我的主要 ViewController 嵌入在 navigation controller 中,在我的 ViewController 中我有 CollectionView 当我点击custom collectionViewCell 它使用 push segue 转到下一个 View Controller 并且在我的第二个 View Controller 我有 UIImage 属性。

当我点击 Collection ViewCell 时,我正在执行以下代码

-(void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath {
NSLog(@"Why did you called me?");
DetailViewViewController *dvc = [[DetailViewViewController alloc] init];

ALAsset *asset = self.assets[indexPath.row];
ALAssetRepresentation *defaultRep = [asset defaultRepresentation];
UIImage *image = [UIImage imageWithCGImage:[defaultRep fullScreenImage] scale:[defaultRep scale] orientation:0];

[dvc initWithImage:image];

}

initWithImage 方法

-(id) initWithImage:(UIImage *)imageName {
self = [super init];
NSLog(@"inithWithImage Called");

self.image = imageName;

return self;
}

问题:问题是 initWithImageviewDidLoad 之前被调用。在 initWithImage 方法中,我将我的属性 UIImage 设置为等于 image。但是当我 checkin viewDidLoad我的属性 UIImage 等于 null

我该如何解决这个问题?

最佳答案

您以错误的方式初始化了 DetailViewViewController。尝试:

-(void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath 
{
ALAsset *asset = self.assets[indexPath.row];
ALAssetRepresentation *defaultRep = [asset defaultRepresentation];

UIImage *image = [UIImage imageWithCGImage:[defaultRep fullScreenImage]
scale:[defaultRep scale]
orientation:0];

DetailViewViewController *dvc = [[DetailViewViewController alloc] initWithImage:image];

...
}

关于ios - viewDidLoad 在初始化之后被调用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22040024/

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