在我的 iPhone 应用程序中,我需要调整UIImageView
数组中一些类型的图像的大小。我没有使用 Interface Builder 来完成这项任务。
我收到此错误:
左运算符分配所需的左值
使用以下代码:
CGSize newsize;
for (int i = 0; i<5; i++)
{
// ball[] is of type UIImageView *
ball[i].center = CGPointMake(ball[i].center.x-5,ball[i].center.y);
if (ball[i].center.x <= 36)
{
while(ball[i].frame.size.width>0 && ball[i].frame.size.height>0)
{
newsize.height =val2--;
newsize.width =val2--;
ball[i].frame.size = newsize; // This line gives the error
}
}
}
如果这不是正确的方法,你能告诉我应该如何调整数组中的图像大小吗?