[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-08-21 UTC."],[[["\u003cp\u003eThe \u003ccode\u003eIMALinkOpenerDelegate\u003c/code\u003e protocol signals the opening and closing of links, including external applications and in-app links.\u003c/p\u003e\n"],["\u003cp\u003eFor external applications like Mobile Safari or app deep links, the delegate is only notified before opening, using the \u003ccode\u003elinkOpenerWillOpenExternalApplication:\u003c/code\u003e method.\u003c/p\u003e\n"],["\u003cp\u003eFor in-app links (browser or app store), the delegate receives notifications for opening (\u003ccode\u003elinkOpenerWillOpenInAppLink:\u003c/code\u003e, \u003ccode\u003elinkOpenerDidOpenInAppLink:\u003c/code\u003e), closing (\u003ccode\u003elinkOpenerWillCloseInAppLink:\u003c/code\u003e, \u003ccode\u003elinkOpenerDidCloseInAppLink:\u003c/code\u003e), and external app launch (\u003ccode\u003elinkOpenerWillOpenExternalApplication:\u003c/code\u003e).\u003c/p\u003e\n"],["\u003cp\u003eAll delegate methods are optional and provide the \u003ccode\u003elinkOpener\u003c/code\u003e object as a parameter, representing the object initiating the link interaction.\u003c/p\u003e\n"]]],[],null,["IMALinkOpenerDelegate \n\n @protocol IMALinkOpenerDelegate \u003cNSObject\u003e\n\nSignals that a link has been opened/closed.\nFor an external app (Mobile Safari/App deep link), the delegate is only notified\nbefore opening.\n- `\n ``\n ``\n `\n\n [-linkOpenerWillOpenExternalApplication:](#/c:objc(pl)IMALinkOpenerDelegate(im)linkOpenerWillOpenExternalApplication:)`\n ` \n Called when Safari or app deep link is about to be opened. \n\n Declaration \n Swift \n\n optional func linkOpenerWillOpenExternalApplication(_ linkOpener: NSObject)\n\n Objective-C \n\n - (void)linkOpenerWillOpenExternalApplication:(nonnull NSObject *)linkOpener;\n\n Parameters\n\n |--------------------|----------------------|\n | ` `*linkOpener*` ` | the receiving object |\n\n- `\n ``\n ``\n `\n\n [-linkOpenerWillOpenInAppLink:](#/c:objc(pl)IMALinkOpenerDelegate(im)linkOpenerWillOpenInAppLink:)`\n ` \n Called before in-app browser/app store opens. \n\n Declaration \n Swift \n\n optional func linkOpenerWillOpen(inAppLink linkOpener: NSObject)\n\n Objective-C \n\n - (void)linkOpenerWillOpenInAppLink:(nonnull NSObject *)linkOpener;\n\n Parameters\n\n |--------------------|-----------------------|\n | ` `*linkOpener*` ` | the receiving object. |\n\n- `\n ``\n ``\n `\n\n [-linkOpenerDidOpenInAppLink:](#/c:objc(pl)IMALinkOpenerDelegate(im)linkOpenerDidOpenInAppLink:)`\n ` \n Called when the in app browser/app-store is shown on the screen. \n\n Declaration \n Swift \n\n optional func linkOpenerDidOpen(inAppLink linkOpener: NSObject)\n\n Objective-C \n\n - (void)linkOpenerDidOpenInAppLink:(nonnull NSObject *)linkOpener;\n\n Parameters\n\n |--------------------|----------------------|\n | ` `*linkOpener*` ` | the receiving object |\n\n- `\n ``\n ``\n `\n\n [-linkOpenerWillCloseInAppLink:](#/c:objc(pl)IMALinkOpenerDelegate(im)linkOpenerWillCloseInAppLink:)`\n ` \n Called when in-app browser/app-store is about to close. \n\n Declaration \n Swift \n\n optional func linkOpenerWillClose(inAppLink linkOpener: NSObject)\n\n Objective-C \n\n - (void)linkOpenerWillCloseInAppLink:(nonnull NSObject *)linkOpener;\n\n Parameters\n\n |--------------------|----------------------|\n | ` `*linkOpener*` ` | the receiving object |\n\n- `\n ``\n ``\n `\n\n [-linkOpenerDidCloseInAppLink:](#/c:objc(pl)IMALinkOpenerDelegate(im)linkOpenerDidCloseInAppLink:)`\n ` \n Called when in-app browser/app-store finishes closing. \n\n Declaration \n Swift \n\n optional func linkOpenerDidClose(inAppLink linkOpener: NSObject)\n\n Objective-C \n\n - (void)linkOpenerDidCloseInAppLink:(nonnull NSObject *)linkOpener;\n\n Parameters\n\n |--------------------|----------------------|\n | ` `*linkOpener*` ` | the receiving object |"]]