In my application I am adding a UIimage
on every button click. As user can add that image number of times he clicked button, I have attached a tag "count1" with that button, and count increases on every click. Thus i can differentiate every image with its tag.
Now i want to remove all those images, on another button click.
I tried to remove those images through the following piece of code
for (int i=1; i<=count1; i++)
{
UIImageView *imgRemove;
[[imgRemove viewWithTag:i] removeFromSuperview];
}
but my application is crashing when I press the button.
please help...