简体   繁体   中英

How to remove UIimageView from Superview

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

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM