I am using the below code to show a popOver to share with options. But options are not touchable but work with long press and also the "Edit option..." at the bottom of it is not clickable.
self.activityViewController = [[UIActivityViewController alloc] initWithActivityItems:items applicationActivities:nil];
typeof(self) __weak weakSelf = self;
[self.activityViewController setCompletionHandler:^(NSString *activityType, BOOL completed) {
weakSelf.activityViewController = nil;
}];
[self presentViewController:self.activityViewController animated:YES completion:nil];
on ios15.2 iphone7plus. What is the reason for this problem? Does anyone have the same problem?