This is a bug that Apple needs to fix. You can use this workaround. If you set animated: to YES , it will only work the first time the document is displayed.
Objective-C:
[self presentViewController:dvc animated:NO completion:^{ if (@available(iOS 11.0, *)) { dvc.allowsMultipleSelection = YES; } }];
Swift 4:
self.present(dvc, animated: false) { if #available(iOS 11.0, *) { dvc.allowsMultipleSelection = true; } }
source share