您的位置:首页 > 移动开发 > IOS开发

iOS 隐藏 Powered by ShareSDK 方法

2014-04-15 14:01 232 查看
 在ISSAuthOptions类里有

- (BOOL)powerByHidden;

- (void)setPowerByHidden:(BOOL)powerByHidden;
方法,
在实现的类里

id<ISSAuthOptions>authOptions = [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 ShareSDK