Advertise Mobile SDKs Books Events Forum News Social Networking Support Us
Follow @iphonedevsdk on Twitter

Interface 2, Advanced iOS
Mockup & Code Gen
($9.99)

Make your own iPhone apps
and run them live!
(free)

Pic Frame Dynamo: Photo Editing
($0.99)

Abiliator
($1.99)

Want your application or service advertised on iPhone Dev SDK?

Go Back   iPhone Dev SDK Forum > iPhone SDK Development Forums > iPhone SDK Development

Reply
 
LinkBack Thread Tools Display Modes
Old 09-09-2011, 07:29 PM   #1 (permalink)
Registered Member
 
Join Date: Sep 2010
Posts: 176
Rifts is on a distinguished road
Default Data type for removeFromSuperview

Hey again,

This may sound weird but I am trying to do this


for (int x = 1; x < randomNumber; x++) {

NSString *result = [NSString stringWithFormat:@"image%d", x];
NSLog(@"%@", result);
[result removeFromSubview]; //getting NSString may not respond to 'removeFromSubview'
}

this is listing all of the images I have added to my view. I'm trying to remove them by name using this but I can not use an NSString so what data type can I convert this to in order to use

[result removeFromSubview];

?

I hope that makes sense, the reason I am doing it this way is because there is a random number of images added so I never know how many to remove.
Rifts is offline   Reply With Quote
Old 09-09-2011, 07:40 PM   #2 (permalink)
Reading the Documentation
 
baja_yu's Avatar
 
Join Date: Sep 2010
Location: 45.255019,19.844908
Posts: 5,414
baja_yu has a spectacular aura about
Default

Strings aren't views. Only a view can be a subview of some other view. Since you are working with images, your subviews are most likely UIImageViews. You need a reference to those imageviews and then send them the removeFromSuperview message.
baja_yu is offline   Reply With Quote
Old 09-09-2011, 07:45 PM   #3 (permalink)
Registered Member
 
Join Date: Sep 2010
Posts: 176
Rifts is on a distinguished road
Default

Hey I actually figured it out doing this



for (int x = 1; x < randomNumber; x++) {

UIImageView *image = (UIImageView *)[self.view viewWithTag:x];
[image removeFromSuperview];
}


just had to add tags to the images and using that code works great!

thanks for the info
Rifts is offline   Reply With Quote
Old 09-09-2011, 07:49 PM   #4 (permalink)
Reading the Documentation
 
baja_yu's Avatar
 
Join Date: Sep 2010
Location: 45.255019,19.844908
Posts: 5,414
baja_yu has a spectacular aura about
Default

That can work too, just make sure you don't use those tags for anything else in the UI or you'll end up removing parts you don't want to remove.

Also, please use [code] tags when posting code, it makes it much easier to read.
baja_yu is offline   Reply With Quote
Old 09-09-2011, 07:54 PM   #5 (permalink)
Registered Member
 
Join Date: Sep 2010
Posts: 176
Rifts is on a distinguished road
Default

they are the only tags im using, the app is pretty simple. Sorry I will from now on.
Rifts is offline   Reply With Quote
Reply

Bookmarks

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



» Advertisements
» Online Users: 415
10 members and 405 guests
apatsufas, Eclectic, fiftysixty, JackReidy, jeroenkeij, teebee74, tim0504, UMAD, yomo710, yuncarl28
Most users ever online was 1,387, 04-10-2012 at 04:21 AM.
» Stats
Members: 175,672
Threads: 94,121
Posts: 402,904
Top Poster: BrianSlick (7,990)
Welcome to our newest member, yuncarl28
Powered by vBadvanced CMPS v3.1.0

All times are GMT -5. The time now is 05:01 AM.
Powered by vBulletin® Version 3.8.0
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.3.0