Is there a way to detect what UIView is currently visible? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T11:27:28Z http://stackoverflow.com/feeds/question/949806 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/949806/is-there-a-way-to-detect-what-uiview-is-currently-visible 1 Is there a way to detect what UIView is currently visible? Kevin 2009-06-04T10:45:26Z 2009-12-01T02:14:00Z <p>I have a class that communicates with a web service and is used throughout the app. What I am looking for is a way to display an Error message in a UIActionSheet on top of what ever view the user is in. Is there an easy way to do this? I would like to avoid call back methods in every view if at all possible.</p> http://stackoverflow.com/questions/949806/is-there-a-way-to-detect-what-uiview-is-currently-visible/950118#950118 5 Answer by littleknown for Is there a way to detect what UIView is currently visible? littleknown 2009-06-04T12:06:36Z 2009-06-04T12:06:36Z <p>What you want to do is find the first responder of the key window I would think. You can do that like this:</p> <pre><code>UIWindow *keyWindow = [[UIApplication sharedApplication] keyWindow]; UIView *firstResponder = [keyWindow performSelector:@selector(firstResponder)]; </code></pre> <p>That should give you the view to use in your call to the UIActionSheet.</p> http://stackoverflow.com/questions/949806/is-there-a-way-to-detect-what-uiview-is-currently-visible/1823607#1823607 1 Answer by Anthony D for Is there a way to detect what UIView is currently visible? Anthony D 2009-12-01T02:14:00Z 2009-12-01T02:14:00Z <p>If you use the code above your app will get rejected when submitted to the app store (for using a non-public api). I found that out the hard way. A better solution is to create a category. Here is what I used to replace the code in the original solution:</p> <pre><code>@implementation UIView (FindFirstResponder) - (UIView *)findFirstResonder { if (self.isFirstResponder) { return self; } for (UIView *subView in self.subviews) { UIView *firstResponder = [subView findFirstResonder]; if (firstResponder != nil) { return firstResponder; } } return nil; } @end </code></pre>