forked from flutter/engine
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Dynamically add certain iOS AppDelegate methods. (flutter#8843)
- Loading branch information
Chris Yang
authored
May 30, 2019
1 parent
58eff77
commit 49b6de8
Showing
5 changed files
with
102 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 18 additions & 0 deletions
18
shell/platform/darwin/ios/framework/Source/FlutterPluginAppLifeCycleDelegate_internal.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
// Copyright 2013 The Flutter Authors. All rights reserved. | ||
// Use of this source code is governed by a BSD-style license that can be | ||
// found in the LICENSE file. | ||
|
||
@interface FlutterPluginAppLifeCycleDelegate () | ||
|
||
/** | ||
* Check whether the selector should be handled dynamically. | ||
*/ | ||
- (BOOL)isSelectorAddedDynamically:(SEL)selector; | ||
|
||
/** | ||
* Check whether there is at least one plugin responds to the selector. | ||
*/ | ||
- (BOOL)hasPluginThatRespondsToSelector:(SEL)selector; | ||
|
||
@end | ||
; |