Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
Instance Methods | Properties | List of all members
AppDelegateTestFlutterAppLifecycleDelegate Class Reference
Inheritance diagram for AppDelegateTestFlutterAppLifecycleDelegate:
<FlutterAppLifecycleDelegate>

Instance Methods

(BOOL- handleOpenURLs: [implementation]
 
- Instance Methods inherited from <FlutterAppLifecycleDelegate>
(void) - handleWillFinishLaunching:
 
(void) - handleDidFinishLaunching:
 
(void) - handleWillBecomeActive:
 
(void) - handleDidBecomeActive:
 
(void) - handleWillResignActive:
 
(void) - handleDidResignActive:
 
(void) - handleWillHide:
 
(void) - handleDidHide:
 
(void) - handleWillUnhide:
 
(void) - handleDidUnhide:
 
(void) - handleDidChangeScreenParameters:
 
(void) - handleDidChangeOcclusionState:
 
(void) - handleWillTerminate:
 

Properties

NSArray< NSURL * > * receivedURLs
 

Detailed Description

Definition at line 17 of file FlutterAppDelegateTest.mm.

Method Documentation

◆ handleOpenURLs:

- (BOOL) handleOpenURLs: (NSArray< NSURL * > *)  urls
implementation

Called when the |FlutterAppDelegate| gets the application:openURLs: callback.

Implementers should return YES if they handle the URLs, otherwise NO. Delegates will be called in order of registration, and once a delegate returns YES, no further delegates will reiceve this callback.

Reimplemented from <FlutterAppLifecycleDelegate>.

Definition at line 18 of file FlutterAppDelegateTest.mm.

23 :(NSArray<NSURL*>*)urls {
24 self.receivedURLs = [urls copy];
25 return YES;
26}

Property Documentation

◆ receivedURLs

- (NSArray<NSURL*>*) receivedURLs
readwritenonatomiccopy

Definition at line 18 of file FlutterAppDelegateTest.mm.


The documentation for this class was generated from the following file: