我正在尝试做一个程序,每次我的触摸结束时,都会出现另一个 UIView 使用循环显示我想要的 UIView 数量。如何在触摸结束时设置 UIView 循环?或者我应该在 viewDidLoad 中创建它并在触摸结束时调用它?
-(void) touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event//upon leaving
{
UITouch *touch = [touches anyObject];
for (int i=0; i < 100; i++) {
UIImageView *layerView = [[UIImageView alloc] initWithFrame:CGRectMake(0, 0, 1024, 768)];
[layerView setAlpha:.05];
[self.view addSubview:layerView];
}
}
希望你们能帮帮我。。