Commit 36f41a34 by wxf65180

2745

parent 2d930a76
...@@ -7,7 +7,6 @@ ...@@ -7,7 +7,6 @@
objects = { objects = {
/* Begin PBXBuildFile section */ /* Begin PBXBuildFile section */
098A5DB0F118F43163916A02 /* Pods_OffcnLiveSDKiOS_Example.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A89BE439C54D2FF6CA0FDAEC /* Pods_OffcnLiveSDKiOS_Example.framework */; };
6003F58E195388D20070C39A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F58D195388D20070C39A /* Foundation.framework */; }; 6003F58E195388D20070C39A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F58D195388D20070C39A /* Foundation.framework */; };
6003F590195388D20070C39A /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F58F195388D20070C39A /* CoreGraphics.framework */; }; 6003F590195388D20070C39A /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F58F195388D20070C39A /* CoreGraphics.framework */; };
6003F592195388D20070C39A /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F591195388D20070C39A /* UIKit.framework */; }; 6003F592195388D20070C39A /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F591195388D20070C39A /* UIKit.framework */; };
...@@ -77,7 +76,6 @@ ...@@ -77,7 +76,6 @@
6003F590195388D20070C39A /* CoreGraphics.framework in Frameworks */, 6003F590195388D20070C39A /* CoreGraphics.framework in Frameworks */,
6003F592195388D20070C39A /* UIKit.framework in Frameworks */, 6003F592195388D20070C39A /* UIKit.framework in Frameworks */,
6003F58E195388D20070C39A /* Foundation.framework in Frameworks */, 6003F58E195388D20070C39A /* Foundation.framework in Frameworks */,
098A5DB0F118F43163916A02 /* Pods_OffcnLiveSDKiOS_Example.framework in Frameworks */,
); );
runOnlyForDeploymentPostprocessing = 0; runOnlyForDeploymentPostprocessing = 0;
}; };
......
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
Pod::Spec.new do |s| Pod::Spec.new do |s|
s.name = 'OffcnLiveSDKiOS' s.name = 'OffcnLiveSDKiOS'
s.version = '2.7.3.3.3' s.version = '2.7.4.5'
s.summary = 'OffcnLiveSDKiOS.' s.summary = 'OffcnLiveSDKiOS.'
s.description = <<-DESC s.description = <<-DESC
......
...@@ -9,7 +9,7 @@ ...@@ -9,7 +9,7 @@
#import <UIKit/UIKit.h> #import <UIKit/UIKit.h>
#import "OffcnShareWindow.h" #import "OffcnShareWindow.h"
static const NSString *OffcnLiveSDKVersion = @"2.7.3.3.3"; static const NSString *OffcnLiveSDKVersion = @"2.7.4.5";
//事件通知 //事件通知
#define kOffcnEventNotification @"kOffcnEventNotification" #define kOffcnEventNotification @"kOffcnEventNotification"
...@@ -100,6 +100,11 @@ typedef void(^OffcnSDKEventCallBack)(OffcnSDKEvent event,NSString *urlString,NSS ...@@ -100,6 +100,11 @@ typedef void(^OffcnSDKEventCallBack)(OffcnSDKEvent event,NSString *urlString,NSS
@property (nonatomic, strong) UIWindow *oldKKeyWindow;//三方的window @property (nonatomic, strong) UIWindow *oldKKeyWindow;//三方的window
@property (nonatomic, weak) UIViewController *shareVC; @property (nonatomic, weak) UIViewController *shareVC;
//app端传过来的ssoAPPId和token
@property (nonatomic, strong) NSString *ssoAppId;
@property (nonatomic, strong) NSString *ssoToken;
@property (nonatomic, strong) NSString *ssoId;
//是否支持全屏 //是否支持全屏
@property (nonatomic, assign) BOOL isFull; @property (nonatomic, assign) BOOL isFull;
...@@ -164,6 +169,26 @@ typedef void(^OffcnSDKEventCallBack)(OffcnSDKEvent event,NSString *urlString,NSS ...@@ -164,6 +169,26 @@ typedef void(^OffcnSDKEventCallBack)(OffcnSDKEvent event,NSString *urlString,NSS
extensionDic:(NSDictionary *)extensionDic extensionDic:(NSDictionary *)extensionDic
playbackSeekTime:(NSTimeInterval)seekTime; playbackSeekTime:(NSTimeInterval)seekTime;
/**
在上一个方法的基础上扩展参数以提供抽奖使用
@param ssoAppId APP的ssoAppId
@param ssoToken 登录后返回的用户ssoToken
*/
-(void)authWithNavigationController:(UINavigationController *)navigationController
VideoType:(OffcnVideoType)videoType
jumpMode:(OffcnJumpMode)jumpMode
appName:(NSString *)appName
phone:(NSString *)phone
nickname:(NSString *)nickname
password:(NSString *)password
uuid:(NSString *)uuid
hook:(NSString *)hook
documentPath:(NSString *)documentPath
extensionDic:(NSDictionary *)extensionDic
playbackSeekTime:(NSTimeInterval)seekTime
ssoAppId:(NSString *)ssoAppId
ssoToken:(NSString *)ssoToken;
-(void)authWithNavigationController:(UINavigationController *)navigationController -(void)authWithNavigationController:(UINavigationController *)navigationController
VideoType:(OffcnVideoType)videoType VideoType:(OffcnVideoType)videoType
jumpMode:(OffcnJumpMode)jumpMode jumpMode:(OffcnJumpMode)jumpMode
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment