Lorsque l'on porte une application sur Mac Catalyst, il y a un problème avec les UIDocumentInteractionController... Les logs disent : [General] UIDocumentInteractionController not available Dans ce cas, là plusieurs cas de figure... Cas 1 : On essaye juste de visualiser un fichier standard, par exemple un PDF... Dans ce cas on peut remplacer le document interactif par un simple open. Dans l'application IOS il faut laisser le document interactif car sinon on sort de l'application. Mais sur un Mac ce n'est pas grave. -( IBAction ) info :( UIButton *)sender { NSURL * url = [[ NSBundle mainBundle ] URLForResource : @"TaPytha" withExtension : @"pdf" ]; #if TARGET_OS_MACCATALYST [[ UIApplication sharedApplication ] openURL :url options : @{} completionHandler : nil ]; #else documentInteractionController = [UIDocumentInteractionController interactionControllerWithURL:url]; assert(documentInteractionCon...