vote up 1 vote down star
2

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.

flag

57% accept rate

1 Answer

vote up 5 vote down check

What you want to do is find the first responder of the key window I would think. You can do that like this:

UIWindow *keyWindow = [[UIApplication sharedApplication] keyWindow];
UIView   *firstResponder = [keyWindow performSelector:@selector(firstResponder)];

That should give you the view to use in your call to the UIActionSheet.

link|flag
That did it. Thanks. – Kevin Jun 9 at 11:29

Your Answer

Get an OpenID
or

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