gpt4 book ai didi

ios - xcode 无法识别@property,但它是正确的

转载 作者:行者123 更新时间:2023-12-01 19:07:54 25 4
gpt4 key购买 nike

Xcode 无法识别 @property详细 Controller 。

ViewController2 的 .m 文件:

- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
{
if ([[segue identifier] isEqualToString:@"showDetail"])
{
NSIndexPath *selectedIndexPath = [[self.collectionView indexPathsForSelectedItems] objectAtIndex:0];

// load the image.

NSString *imageNameToLoad = [NSString stringWithFormat:@"%d", selectedIndexPath.row];
NSString *pathToImage = [[NSBundle mainBundle] pathForResource:imageNameToLoad ofType:@"JPG"];
UIImage *image2 = [[UIImage alloc] initWithContentsOfFile:pathToImage];

Detail_ViewController_Biffy *detailViewController = [segue destinationViewController];
Detail_ViewController_Biffy.**image = image;** <--- fails [property 'image'not found on object of type 'detail_ViewController_Biffy'
}
}

detail_view 的 .h 文件
#import "ViewController.h"

@interface ViewController_Biffy : ViewController

@property (strong, nonatomic) IBOutlet UIImageView *image;

@end

尝试更改导入 ViewController.hViewController_Biffy.h但会导致更多错误。

如果您需要更多信息,请告诉我。

最佳答案

您正在尝试从类而不是实例中获取属性。尝试

Detail_ViewController_Biffy *detailViewController = [segue destinationViewController];
detailViewController.image = image

此外,您所说的类型 detail_ViewController2 不在您的代码中的任何位置

关于ios - xcode 无法识别@property,但它是正确的,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18593700/

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