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)
|
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.
Or if you have a UINavigationController managing the view controllers, you could check its visibleViewController property instead. |
|||||||||||||||||
|
|
Here's @progrmr's solution as a
|
|||
|
|
|
You want to use the
|
|||
|
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.