0
當我問早些時候如何在bool var爲true時顯示uiimageview。現在我需要動態創建uiimageview。如果應用程序檢測到bool var爲真,我將如何能夠連續創建uiimageview? 樣品:當BOOL var爲true時動態創建uiimageview
BOOL var1= true;
BOOL var2 = false;
BOOL var3 = true;
if(var1)
{
cell.incentive1.hidden = false;
}
if(var2)
{
cell.incentive2.hidden = false;
}
if(var3)
{
cell.incentive3.hidden = false;
}
我怎麼會讓UIImageView的爲VAR3 VAR1的旁邊的UIImageView來顯示?