Skip to content

Commit a83c836

Browse files
committed
[CI] Auto Publish / build:2159
1 parent 322a828 commit a83c836

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+1073
-957
lines changed

RFP-iOS-SDK.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
{
2+
"2.11.0": "https://github.com/fout/RFP-iOS-SDK/releases/download/v2.11.0/RFP-iOS-SDK-2.11.0.zip",
23
"2.10.3": "https://github.com/fout/RFP-iOS-SDK/releases/download/v2.10.3/RFP-iOS-SDK-2.10.3.zip",
34
"2.10.2": "https://github.com/fout/RFP-iOS-SDK/releases/download/v2.10.2/RFP-iOS-SDK-2.10.2.zip",
45
"2.10.1": "https://github.com/fout/RFP-iOS-SDK/releases/download/v2.10.1/RFP-iOS-SDK-2.10.1.zip",

RFP-iOS-SDK.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "RFP-iOS-SDK"
3-
s.version = "2.10.3"
3+
s.version = "2.11.0"
44
s.summary = "RFP SDK for iOS"
55
s.homepage = "https://github.com/fout/RFP-iOS-SDK"
66
s.license = {

RFP.framework/Headers/RFPInstreamAdLoader.h

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
4747
@see RFPExceptionDelegate.h
4848
*/
49-
@property(nonatomic, weak) id<RFPExceptionDelegate> exceptionDelegate;
49+
@property(nonatomic, weak) id <RFPExceptionDelegate> exceptionDelegate;
5050

5151
/**
5252
binds this loader to your table view.
@@ -88,6 +88,18 @@
8888

8989
- (void)rfpLoadAdWithReturn:(NSString *)adSpotId adCount:(NSUInteger)adCount positions:(NSArray *)positions;
9090

91+
/**
92+
starts loading advertisements for receiving advertisement informations,
93+
if you want to do so.
94+
@param adSpotId adSpotId to be registered in advance
95+
@param adCount advertisement information count to be received in the callback. If 0 is given, registered is selected.
96+
@param positions each position to be added into `RFPInstreamInfoModel` in order to control ad position. If nil is given, registered is selected.
97+
@param custom custom parameters
98+
99+
ex. [self.instreamAdLoader loadAdWithReturn:6 adCount:5 positions:@[@3,@6,@9,@12,@15] data:@{@"key": @"val1", @"key": @"val2"}];
100+
*/
101+
- (void)rfpLoadAdWithReturn:(NSString *)adSpotId adCount:(NSUInteger)adCount positions:(NSArray *)positions customs:(NSDictionary *)customParams;
102+
91103
/**
92104
send an impression record to log advertising performance.
93105

RFP.framework/Headers/RFPOutstreamVideoAdLoader.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,6 @@
1818

1919
- (void)loadAdWithAdspotID:(NSString *)adSpotId frame:(CGRect)frame;
2020

21+
- (void)loadAdWithAdspotID:(NSString *)adSpotId frame:(CGRect)frame customs:(NSDictionary *)customParams;
22+
2123
@end

RFP.framework/RFP

-234 KB
Binary file not shown.

RFP.framework/Resources/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@
1717
<key>CFBundlePackageType</key>
1818
<string>FMWK</string>
1919
<key>CFBundleShortVersionString</key>
20-
<string>2.10.3</string>
20+
<string>2.11.0</string>
2121
<key>CFBundleSignature</key>
2222
<string>????</string>
2323
<key>CFBundleVersion</key>
24-
<string>2.10.3</string>
24+
<string>2.11.0</string>
2525
<key>NSPrincipalClass</key>
2626
<string></string>
2727
<key>NSHumanReadableCopyright</key>

RFP.framework/Versions/A/Headers/RFPInstreamAdLoader.h

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
4747
@see RFPExceptionDelegate.h
4848
*/
49-
@property(nonatomic, weak) id<RFPExceptionDelegate> exceptionDelegate;
49+
@property(nonatomic, weak) id <RFPExceptionDelegate> exceptionDelegate;
5050

5151
/**
5252
binds this loader to your table view.
@@ -88,6 +88,18 @@
8888

8989
- (void)rfpLoadAdWithReturn:(NSString *)adSpotId adCount:(NSUInteger)adCount positions:(NSArray *)positions;
9090

91+
/**
92+
starts loading advertisements for receiving advertisement informations,
93+
if you want to do so.
94+
@param adSpotId adSpotId to be registered in advance
95+
@param adCount advertisement information count to be received in the callback. If 0 is given, registered is selected.
96+
@param positions each position to be added into `RFPInstreamInfoModel` in order to control ad position. If nil is given, registered is selected.
97+
@param custom custom parameters
98+
99+
ex. [self.instreamAdLoader loadAdWithReturn:6 adCount:5 positions:@[@3,@6,@9,@12,@15] data:@{@"key": @"val1", @"key": @"val2"}];
100+
*/
101+
- (void)rfpLoadAdWithReturn:(NSString *)adSpotId adCount:(NSUInteger)adCount positions:(NSArray *)positions customs:(NSDictionary *)customParams;
102+
91103
/**
92104
send an impression record to log advertising performance.
93105

RFP.framework/Versions/A/Headers/RFPOutstreamVideoAdLoader.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,6 @@
1818

1919
- (void)loadAdWithAdspotID:(NSString *)adSpotId frame:(CGRect)frame;
2020

21+
- (void)loadAdWithAdspotID:(NSString *)adSpotId frame:(CGRect)frame customs:(NSDictionary *)customParams;
22+
2123
@end

RFP.framework/Versions/A/RFP

-234 KB
Binary file not shown.

RFP.framework/Versions/A/Resources/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@
1717
<key>CFBundlePackageType</key>
1818
<string>FMWK</string>
1919
<key>CFBundleShortVersionString</key>
20-
<string>2.10.3</string>
20+
<string>2.11.0</string>
2121
<key>CFBundleSignature</key>
2222
<string>????</string>
2323
<key>CFBundleVersion</key>
24-
<string>2.10.3</string>
24+
<string>2.11.0</string>
2525
<key>NSPrincipalClass</key>
2626
<string></string>
2727
<key>NSHumanReadableCopyright</key>

0 commit comments

Comments
 (0)