所以我在视图中有一个按钮,我知道如何访问它,但我不知道如何更改该按钮上的图片。这是我得到的:
for(UIView *button in [okvir subviews]){
if([button isKindOfClass:[UIButton class]]){
UIImage *picture=[UIImage imageWithData:slika];
[button setImage:picture forState:UIControlStateNormal];
}
}
但是,这会导致错误:
No visible @interface for 'UIView' declares the selector 'setImage:forState:'
我猜那是因为按钮是 UIView 而不是 UIButton,知道该怎么做吗?