IOS 8.3 Error on Facebook Not Registered

I use NSString and NSURL using my own UIActivityViewController

The user has logged into Facebook both in the settings and in the Facebook application

but after iOS 8.3 I get this error ... moreover, on older devices, dialogue confirmation is closed by the keyboard, which makes confirmation or rejection impossible

enter image description here

UIActivityViewController *vc = [[UIActivityViewController alloc] initWithActivityItems:items applicationActivities:applicationActivities];
NSArray *excludeActivities = @[UIActivityTypeAssignToContact];
vc.excludedActivityTypes = excludeActivities;

if (IsUserInterfaceIdiomPad) {
    vc.popoverPresentationController.sourceView = self.navigationController.view;
}
[self.navigationController presentViewController:vc animated:YES completion:^{

}];
+4
source share
1 answer

Yes, this is a bug that appeared in Version 29 of the Facebook application. We (Facebook) are working on a fix and hope that it will be released soon.

+6
source

Source: https://habr.com/ru/post/1584771/


All Articles