我在故事板上有 10 个 uibuttons,我已经将它们与 iboutletcollections 链接起来。然后我使用循环从 uiimage 数组中设置按钮背景图像。当我运行我的项目按钮索引与图像索引不同
这是我的代码
-(void)setButtonImages
{
for (int i=0; i<imageArray.count; i++)
{
UIButton *b =[self.myButtons objectAtIndex:i];
[b setBackgroundImage:[imageArray objectAtIndex:i] forState:UIControlStateNormal];
}
}