gpt4 book ai didi

objective-c - performSelectorOnMainThread 奇怪

转载 作者:行者123 更新时间:2023-11-28 18:08:02 26 4
gpt4 key购买 nike

只是遇到了奇怪的事情。我有以下代码:

-(void)ImageDownloadCompleat
{
[self performSelectorOnMainThread:@selector(updateImageButton:)
withObject:nil
waitUntilDone:YES];
}

-(void)updateImageButton {
NSLog(@"image OKEY");
UIImage *img = [UIImage imageWithContentsOfFile:[NSString stringWithFormat:
@"%@/%@.jpg",pathPreview,self.idProducts]];
//images.image = img;

[images setBackgroundImage:img forState:UIControlEventTouchUpInside];
[img release];
}

它崩溃并显示无法识别的选择器发送到实例错误。上面的代码有什么问题?

提前致谢

最佳答案

因为你的方法被声明为

-(void)updateImageButton

相应的选择器是 @selector(updateImageButton) 没有尾随冒号。 更改:

[self performSelectorOnMainThread:@selector(updateImageButton:) 
withObject:nil
waitUntilDone:YES];

[self performSelectorOnMainThread:@selector(updateImageButton) 
withObject:nil
waitUntilDone:YES];

它应该可以工作。

关于objective-c - performSelectorOnMainThread 奇怪,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6056420/

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