0

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...

Dharmesh Dhorajiya
  • 3,976
  • 9
  • 30
  • 39
Iphone Developer
  • 163
  • 2
  • 14

1 Answers1

0

If you want to remove a view form the super view look at this question (with answer): link

Community
  • 1
  • 1
Justin
  • 2,960
  • 2
  • 34
  • 48