-
-
Notifications
You must be signed in to change notification settings - Fork 70
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #87 from hansemannn/TIMOB-25355
Update to iOS SDK 4.27.0, support Xcode 9 / iOS 11
- Loading branch information
Showing
19 changed files
with
201 additions
and
5 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
Binary file not shown.
Binary file not shown.
Binary file not shown.
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
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified
BIN
+8.66 KB
(100%)
ios/platform/FBSDKMessengerShareKit.framework/FBSDKMessengerShareKit
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
57 changes: 57 additions & 0 deletions
57
ios/platform/FBSDKShareKit.framework/Headers/FBSDKCameraEffectArguments.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,57 @@ | ||
// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. | ||
// | ||
// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, | ||
// copy, modify, and distribute this software in source code or binary form for use | ||
// in connection with the web services and APIs provided by Facebook. | ||
// | ||
// As with any software that integrates with the Facebook platform, your use of | ||
// this software is subject to the Facebook Developer Principles and Policies | ||
// [http://developers.facebook.com/policy/]. This copyright notice shall be | ||
// included in all copies or substantial portions of the software. | ||
// | ||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS | ||
// FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR | ||
// COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER | ||
// IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN | ||
// CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | ||
|
||
#import <Foundation/Foundation.h> | ||
|
||
#import <FBSDKCoreKit/FBSDKCopying.h> | ||
|
||
/** | ||
* A container of arguments for a camera effect. | ||
* An argument is a NSString identified by a NSString key. | ||
*/ | ||
@interface FBSDKCameraEffectArguments : NSObject <FBSDKCopying, NSSecureCoding> | ||
|
||
/** | ||
Sets a string argument in the container. | ||
- Parameter string: The argument | ||
- Parameter key: The key for the argument | ||
*/ | ||
- (void)setString:(NSString *)string forKey:(NSString *)key; | ||
|
||
/** | ||
Gets a string argument from the container. | ||
- Parameter key: The key for the argument | ||
- Returns: The string value or nil | ||
*/ | ||
- (NSString *)stringForKey:(NSString *)key; | ||
|
||
/** | ||
Sets a string array argument in the container. | ||
- Parameter array: The array argument | ||
- Parameter key: The key for the argument | ||
*/ | ||
- (void)setArray:(NSArray<NSString *> *)array forKey:(NSString *)key; | ||
|
||
/** | ||
Gets an array argument from the container. | ||
- Parameter key: The key for the argument | ||
- Returns: The array argument | ||
*/ | ||
- (NSArray *)arrayForKey:(NSString *)key; | ||
|
||
@end |
43 changes: 43 additions & 0 deletions
43
ios/platform/FBSDKShareKit.framework/Headers/FBSDKCameraEffectTextures.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,43 @@ | ||
// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. | ||
// | ||
// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, | ||
// copy, modify, and distribute this software in source code or binary form for use | ||
// in connection with the web services and APIs provided by Facebook. | ||
// | ||
// As with any software that integrates with the Facebook platform, your use of | ||
// this software is subject to the Facebook Developer Principles and Policies | ||
// [http://developers.facebook.com/policy/]. This copyright notice shall be | ||
// included in all copies or substantial portions of the software. | ||
// | ||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS | ||
// FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR | ||
// COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER | ||
// IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN | ||
// CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | ||
|
||
#import <UIKit/UIKit.h> | ||
|
||
#import <FBSDKCoreKit/FBSDKCopying.h> | ||
|
||
/** | ||
* A container of textures for a camera effect. | ||
* A texture for a camera effect is an UIImages identified by a NSString key. | ||
*/ | ||
@interface FBSDKCameraEffectTextures : NSObject <FBSDKCopying, NSSecureCoding> | ||
|
||
/** | ||
Sets the image for a texture key. | ||
- Parameter image: The UIImage for the texture | ||
- Parameter name: The key for the texture | ||
*/ | ||
- (void)setImage:(UIImage *)image forKey:(NSString *)key; | ||
|
||
/** | ||
Gets the image for a texture key. | ||
- Parameter name: The key for the texture | ||
- Returns: The texture UIImage or nil | ||
*/ | ||
- (UIImage *)imageForKey:(NSString *)key; | ||
|
||
@end |
52 changes: 52 additions & 0 deletions
52
ios/platform/FBSDKShareKit.framework/Headers/FBSDKShareCameraEffectContent.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,52 @@ | ||
// Copyright (c) 2014-present, Facebook, Inc. All rights reserved. | ||
// | ||
// You are hereby granted a non-exclusive, worldwide, royalty-free license to use, | ||
// copy, modify, and distribute this software in source code or binary form for use | ||
// in connection with the web services and APIs provided by Facebook. | ||
// | ||
// As with any software that integrates with the Facebook platform, your use of | ||
// this software is subject to the Facebook Developer Principles and Policies | ||
// [http://developers.facebook.com/policy/]. This copyright notice shall be | ||
// included in all copies or substantial portions of the software. | ||
// | ||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS | ||
// FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR | ||
// COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER | ||
// IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN | ||
// CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | ||
|
||
#import <Foundation/Foundation.h> | ||
|
||
#import <FBSDKShareKit/FBSDKCameraEffectArguments.h> | ||
#import <FBSDKShareKit/FBSDKCameraEffectTextures.h> | ||
#import <FBSDKShareKit/FBSDKSharingContent.h> | ||
|
||
/** | ||
A model for content to share with a Facebook camera effect. | ||
*/ | ||
@interface FBSDKShareCameraEffectContent : NSObject <FBSDKSharingContent> | ||
|
||
/** | ||
ID of the camera effect to use. | ||
*/ | ||
@property (nonatomic, copy) NSString *effectID; | ||
|
||
/** | ||
Arguments for the effect. | ||
*/ | ||
@property (nonatomic, copy) FBSDKCameraEffectArguments *effectArguments; | ||
|
||
/** | ||
Textures for the effect. | ||
*/ | ||
@property (nonatomic, copy) FBSDKCameraEffectTextures *effectTextures; | ||
|
||
/** | ||
Compares the receiver to another camera effect content. | ||
- Parameter content: The other content | ||
- Returns: YES if the receiver's values are equal to the other content's values; otherwise NO | ||
*/ | ||
- (BOOL)isEqualToShareCameraEffectContent:(FBSDKShareCameraEffectContent *)content; | ||
|
||
@end |
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
Binary file not shown.
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