gpt4 book ai didi

ios - 没有已知的类- iOS

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

你能看看我的代码并告诉我为什么我做错了吗?

我收到一个错误 “No known class for selector method "imageWithImage: (UIImage)image...."

- (void)myMethod {

UIImage *iconImage=[UIImage imageNamed:@"male_small_0.png"];
// I am having problem in the following line
UIImage *iconImage2=[UIImage imageWithImage:iconImage scaledToSize:CGSizeMake(73.0, 73.0)];
}

-(UIImage*)imageWithImage:(UIImage*)image scaledToSize:(CGSize)newSize
{
UIGraphicsBeginImageContextWithOptions(newSize, NO, 0.0);
[image drawInRect:CGRectMake(0, 0, newSize.width, newSize.height)];
UIImage *newImage =UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
return newImage;

}

最佳答案

它应该是 [self imageWithImage:...] 而不是 [UIImage imageWithImage...]。后者暗示该方法是 UIImage 的类方法,但它似乎是包含 myMethod 的类的实例方法。

关于ios - 没有已知的类- iOS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16486463/

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