iOS 隐藏 Powered by ShareSDK 方法

 在ISSAuthOptions类里有

- (BOOL)powerByHidden;


- (void)setPowerByHidden:(BOOL)powerByHidden;

方法,

在实现的类里

idauthOptions = [ShareSDK authOptionsWithAutoAuth:YES allowCallback:NO authViewStyle:SSAuthViewStyleFullScreenPopup viewDelegate:nil authManagerViewDelegate:nil];

    [authOptions setPowerByHidden:YES];


authOptions 对象要加入到下面黑体的方法里


+ (id<ISSShareActionSheet>)showShareActionSheet:(id<ISSContainer>)container

                                      shareList:(NSArray *)shareList

                                        content:(id<ISSContent>)content

                                  statusBarTips:(BOOL)statusBarTips


                                    authOptions:(id<ISSAuthOptions>)authOptions


                                   shareOptions:(id<ISSShareOptions>)shareOptions

                                         result:(SSPublishContentEventHandler)result;



iOS 隐藏 Powered by ShareSDK 方法_第1张图片



你可能感兴趣的:(iOS开发,iOS,ShareSDK)