vote up 2 vote down star

If I have 3 different views which are defined in 3 corresponding functions, namely:

- (UIView *)getView1 { /*...*/ }
- (UIView *)getView2 { /*...*/ }
- (UIView *)getView3 { /*...*/ }

These are added to self.view when a particular view is required.

My question is, how do we know which of these views is currently being displayed? Is there a parameter that will identify which view is the current view?

flag
How are the views added to self.view? Do you use [self.view addSubview:...], and if so, do you remove the existing subview first? A little more information would help. – e.James Dec 17 '08 at 18:39

2 Answers

vote up 3 vote down

Assuming you are removing the other two views from self.view when you change them you can use [self superview] to determine which one is currently displayed.

link|flag
vote up 5 vote down

You can tag each view with with an integer and later read the tag to determine which view is active (assuming you are replacing self.view).

#define TAG_VIEW_1 1
#define TAG_VIEW_2 2
#define TAG_VIEW_3 3
...
[ [self getView1()] setTag:TAG_VIEW_1 ];
[ [self getView2()] setTag:TAG_VIEW_2 ];
[ [self getView3()] setTag:TAG_VIEW_3 ];
...    

if ( self.view.tag == TAG_VIEW_1 ) {
    // do something
}
else if ( self.view.tag == TAG_VIEW_2 ) {
    // etc
}
...
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.