Is there a way to detect what UIView is currently visible? - Stack Overflow most recent 30 from stackoverflow.com2009-12-17T11:27:28Zhttp://stackoverflow.com/feeds/question/949806http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/949806/is-there-a-way-to-detect-what-uiview-is-currently-visible1Is there a way to detect what UIView is currently visible?Kevin2009-06-04T10:45:26Z2009-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#9501185Answer by littleknown for Is there a way to detect what UIView is currently visible?littleknown2009-06-04T12:06:36Z2009-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#18236071Answer by Anthony D for Is there a way to detect what UIView is currently visible?Anthony D2009-12-01T02:14:00Z2009-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>