IBOutletCollection对象索引错误

时间:2013-08-27 04:45:45

标签: ios sdk indexing iboutletcollection

我在故事板上有10个uibutton,我将它们与iboutletcollections相关联。然后我使用循环从uiimage数组设置按钮backgroundimage。当我运行我的项目按钮索引不同于图像索引


这是我的代码

-(void)setButtonImages
{ 
  for (int i=0; i<imageArray.count; i++)
  {
    UIButton *b =[self.myButtons objectAtIndex:i];
    [b setBackgroundImage:[imageArray objectAtIndex:i] forState:UIControlStateNormal];
  }
}

1 个答案:

答案 0 :(得分:1)

手动创建按钮然后逐个标记它们,您可以使用带标记的按钮