-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
王洋洋
committed
Mar 21, 2023
1 parent
247bcb9
commit 81e04fa
Showing
54 changed files
with
887 additions
and
21 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
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
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 renamed
BIN
+747 Bytes
...4_armv7/SensorsFocus.framework/Info.plist → ...4_armv7/SensorsFocus.framework/Info.plist
Binary file not shown.
File renamed without changes.
Binary file renamed
BIN
+5.5 MB
...armv7/SensorsFocus.framework/SensorsFocus → ...armv7/SensorsFocus.framework/SensorsFocus
Binary file not shown.
File renamed without changes
File renamed without changes
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
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
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 renamed
BIN
+774 Bytes
...mulator/SensorsFocus.framework/Info.plist → ...mulator/SensorsFocus.framework/Info.plist
Binary file not shown.
File renamed without changes.
Binary file added
BIN
+1.88 MB
...sorsFocus.xcframework/ios-arm64_i386_x86_64-simulator/SensorsFocus.framework/SensorsFocus
Binary file not shown.
File renamed without changes
File renamed without changes
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 removed
BIN
-1.9 MB
...sorsFocus.xcframework/ios-arm64_i386_x86_64-simulator/SensorsFocus.framework/SensorsFocus
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>AvailableLibraries</key> | ||
<array> | ||
<dict> | ||
<key>LibraryIdentifier</key> | ||
<string>ios-arm64_i386_x86_64-simulator</string> | ||
<key>LibraryPath</key> | ||
<string>SensorsFocus.framework</string> | ||
<key>SupportedArchitectures</key> | ||
<array> | ||
<string>arm64</string> | ||
<string>i386</string> | ||
<string>x86_64</string> | ||
</array> | ||
<key>SupportedPlatform</key> | ||
<string>ios</string> | ||
<key>SupportedPlatformVariant</key> | ||
<string>simulator</string> | ||
</dict> | ||
<dict> | ||
<key>LibraryIdentifier</key> | ||
<string>ios-arm64_armv7</string> | ||
<key>LibraryPath</key> | ||
<string>SensorsFocus.framework</string> | ||
<key>SupportedArchitectures</key> | ||
<array> | ||
<string>arm64</string> | ||
<string>armv7</string> | ||
</array> | ||
<key>SupportedPlatform</key> | ||
<string>ios</string> | ||
</dict> | ||
</array> | ||
<key>CFBundlePackageType</key> | ||
<string>XFWK</string> | ||
<key>XCFrameworkFormatVersion</key> | ||
<string>1.0</string> | ||
</dict> | ||
</plist> |
31 changes: 31 additions & 0 deletions
31
...atic/SensorsFocus.xcframework/ios-arm64_armv7/SensorsFocus.framework/Headers/SFCampaign.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,31 @@ | ||
// | ||
// SFCampaign.h | ||
// SensorsFocus | ||
// | ||
// Created by 陈玉国 on 2021/3/30. | ||
// Copyright © 2021 Sensors Data Co., Ltd. All rights reserved. | ||
// | ||
|
||
#import <Foundation/Foundation.h> | ||
#import "SensorsFocusActionModel.h" | ||
|
||
typedef NS_ENUM(NSUInteger, SFCampaignType) { | ||
SFCampaignTypePreset, | ||
SFCampaignTypeCustomized, | ||
}; | ||
|
||
NS_ASSUME_NONNULL_BEGIN | ||
|
||
@interface SFCampaign : NSObject | ||
|
||
@property (nonatomic, copy, readonly, nullable) NSString *planID; | ||
@property (nonatomic, copy, readonly, nullable) NSString *name; | ||
@property (nonatomic, copy, readonly, nonnull) NSString *content; | ||
@property (nonatomic, assign, readonly) SFCampaignType type; | ||
@property (nonatomic, strong, readonly, nullable) SensorsFocusActionModel *action; | ||
|
||
- (instancetype)init NS_UNAVAILABLE; | ||
|
||
@end | ||
|
||
NS_ASSUME_NONNULL_END |
56 changes: 56 additions & 0 deletions
56
...SensorsFocus.xcframework/ios-arm64_armv7/SensorsFocus.framework/Headers/SFConfigOptions.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,56 @@ | ||
// | ||
// SFConfigOptions.h | ||
// SensorsFocus | ||
// | ||
// Created by 陈玉国 on 2020/3/9. | ||
// Copyright © 2020 Sensors Data Co., Ltd. All rights reserved. | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
// | ||
|
||
#if ! __has_feature(objc_arc) | ||
#error This file must be compiled with ARC. Either turn on ARC for the project or use -fobjc-arc flag on this file. | ||
#endif | ||
|
||
#import <Foundation/Foundation.h> | ||
#import "SFInteractionProtocol.h" | ||
|
||
NS_ASSUME_NONNULL_BEGIN | ||
|
||
@interface SFConfigOptions : NSObject | ||
|
||
- (instancetype)init NS_UNAVAILABLE; | ||
|
||
/** | ||
Returns an object initialized from base url. | ||
@param apiBaseURL a base url | ||
@return self, initialized using the base url. | ||
*/ | ||
- (instancetype)initWithApiBaseURL:(NSString *)apiBaseURL NS_DESIGNATED_INITIALIZER; | ||
|
||
/// 可以通过这个接口,设置弹窗展示的代理对象 | ||
@property (nonatomic, weak) id<SensorsFocusPopupDelegate> popupDelegate; | ||
@property (nonatomic, weak) id<SensorsFocusCampaignDelegate> campaignDelegate; | ||
|
||
//default to YES, if set to NO, will not pre-download image | ||
@property (nonatomic, assign) BOOL preloadImage; | ||
|
||
/// set placeholder image while image items in popup was downloading | ||
@property (nonatomic, strong, nullable) NSData *placeholderImage; | ||
|
||
@property (nonatomic, copy, nullable) NSString *placeholderImageName; | ||
|
||
@end | ||
|
||
NS_ASSUME_NONNULL_END |
Oops, something went wrong.