由于我是 iOS 编程的新手,我正在通过一个视图网格以编程方式创建一个轻量级循环游戏:
- (void)createGrid
{
float x=0,y=0;
for (int i=0; i<288; i+=16)
{
x = i + 16;
for (int j=0; j<288; j+=16)
{
y = j + 16;
UIView *panel = [[UIView alloc] initWithFrame:CGRectMake(x, y, 15, 15)];
panel.backgroundColor = [UIColor purpleColor ];
[self.view addSubview:panel];
}
}
}
现在我想通过单击上、下、左、右按钮更改每个视图的背景颜色来在视图之间切换。