Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

UIAlertView, a class part of Apple's UIKit framework, is used to display an alert to the user. The alert can have a title, message, several buttons, and custom subviews.

learn more… | top users | synonyms

0
votes
1answer
26 views

Suppressing Facebook SDK UIAlertView in iOS

I use the Facebook SDK for login in my App, I am on the newest version 3.2.1 and am having an issue with some of the errors the SDK throws. For example (and I know this is an outlier case) if a user ...
0
votes
2answers
175 views

Create an alert on any view controller from a method [duplicate]

Possible Duplicate: Create an alert on any view controller after Facebook request:didFailWithError: I have a method that gets called if a video upload to Facebook has failed. If that method ...
0
votes
3answers
659 views

Facebook login dialog will not work with UIAlertView, but does with UIButton

I have this piece of code which I use for showing a login dialog/posting to the users wall: _posting = YES; // If we're not logged in, log in first... if (![_session isConnected]) { ...