友盟分享使用

Posted 锦夏ing

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了友盟分享使用相关的知识,希望对你有一定的参考价值。

 

一、

//自定义分享界面 增加分享按钮

[UMSocialUIManager addCustomPlatformWithoutFilted:UMSocialPlatformType_UserDefine_Begin+2
withPlatformIcon:[UIImage imageNamed:@"org_myHome"]
withPlatformName:@"个人主页"];

[UMSocialUIManager addCustomPlatformWithoutFilted:UMSocialPlatformType_UserDefine_Begin+3
withPlatformIcon:[UIImage imageNamed:@"org_myCopy"]
withPlatformName:@"复制链接"];

//移除微信收藏
[[UMSocialManager defaultManager] removePlatformProviderWithPlatformType:UMSocialPlatformType_WechatFavorite];

[UMSocialShareUIConfig shareInstance].sharePageGroupViewConfig.sharePageGroupViewPostionType = UMSocialSharePageGroupViewPositionType_Bottom;
[UMSocialShareUIConfig shareInstance].sharePageScrollViewConfig.shareScrollViewPageItemStyleType = UMSocialPlatformItemViewBackgroudType_None;
[UMSocialUIManager showShareMenuViewInWindowWithPlatformSelectionBlock:^(UMSocialPlatformType platformType, NSDictionary *userInfo)

{
//在回调里面获得点击的
if (platformType == UMSocialPlatformType_UserDefine_Begin+2) {//分享个人主页
dispatch_async(dispatch_get_main_queue(), ^{

  if([AppDelegate APP].userInfo.keyKeyId == self.ycDetailModel.orAuthorId)
  {
    [MBProgressHUD showError:@"不能转发自己的作品!"];
  }
  [self shareViewShow];
});
}
else if(platformType == UMSocialPlatformType_UserDefine_Begin+3)//复制
{
  UIPasteboard *pasteboard = [UIPasteboard generalPasteboard];

  pasteboard.string = self.ycDetailModel.ycUrl;

  [MBProgressHUD showSuccess:@"复制链接成功!"];
}
else{
  [self shareWebPageToPlatformType:platformType];
}

}];

 

二、清空自定义分享按钮

[UMSocialUIManager  removeAllCustomPlatformWithoutFilted];

以上是关于友盟分享使用的主要内容,如果未能解决你的问题,请参考以下文章

如何使用友盟 Cocos2d-x 分享组件实现 Android/iOS 分享功能

iOS 友盟分享

Android 使用第三方SDK—友盟实现分享功能

友盟分享(微信分享,微博分享,Facebook分享)

友盟分享小结 - iOS

友盟社交分享中的那些坑