Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a tabbar application, with many views. Is there a way to know if a particular UIViewController is currently visible from within the UIViewController? (looking for a property)

share|improve this question

3 Answers

up vote 197 down vote accepted

The view's window property is non-nil if a view is currently visible, so check the main view in the view controller:

[EDIT] Invoking the view method causes the view to load (if it is not loaded) which is unnecessary and may be undesirable. It would be better to check first to see if it is already loaded. I've added the call to isViewLoaded to avoid this problem.

if (viewController.isViewLoaded && viewController.view.window) {
    // viewController is visible
}

Or if you have a UINavigationController managing the view controllers, you could check its visibleViewController property instead.

share|improve this answer
2  
The one issue with a UINavigationController's visibleViewControllee property is the case where your visibleViewController presents a modal view controller. In that case, the modal view becomes the visibleViewController, which may be undesirable. How would you handle that? – Moshe Jun 30 '11 at 4:31
4  
+1: truly superb answer. I find great that you care about community and came back to update your answer :) – delirus Jul 5 '11 at 13:45
   
I want to check which View I am on currently and I am using the navigationController. It returns a UIViewController*. How do I use this result to check if I am on a particular ViewController? – Namratha Sep 21 '11 at 13:27
@Namratha: you should create a new question rather than ask questions in the comments area. – progrmr Sep 21 '11 at 14:00
I have done that. Just that I thought related topics could be discussed here. Could you please check this out then? stackoverflow.com/questions/7498880/… – Namratha Sep 22 '11 at 4:05
show 3 more comments

Here's @progrmr's solution as a UIViewController category:

// UIViewController+Additions.h

@interface UIViewController (Additions)

- (BOOL)isVisible;

@end


// UIViewController+Additions.m

#import "UIViewController+Additions.h"

@implementation UIViewController (Additions)

- (BOOL)isVisible {
    return [self isViewLoaded] && self.view.window;
}

@end
share|improve this answer

You want to use the UITabBarController's selectedViewController property. All view controllers attached to a tab bar controller have a tabBarController property set, so you can, from within any of the view controllers' code:

if([[[self tabBarController] selectedViewController] isEqual:self]){
     //we're in the active controller
}else{
     //we are not
}
share|improve this answer
This doesn't work if the view controller is contained inside a navigation controller and that controller is added to the tab bar controller. The call to selectedViewController will return the navigation controller and not the current view controller. – Anton Holmberg Dec 8 '12 at 15:12

protected by progrmr May 8 at 0:28

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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