これが私のコードです
-(void)gridCell:(GridCell *)gCell didSelectImageAtIndex:(NSInteger)index imagSize:(CGRect )frameSize
{
UIImage *img=[UIImage imageNamed:@"Overlay"];
UIImageView *imgView=[[UIImageView alloc]initWithFrame:frameSize];
imgView.image=img;
[_scrPage addSubview:imgView];
[self.view addSubview:_scrPage];
}
オーバーレイを削除する方法を教えてください..