Social 實現分享功能

2021-07-11 09:04:56 字數 699 閱讀 6763

首先,先宣告一點,這裡的分享平台包括以下幾個:

slservicetypetwitter   

slservicetypefacebook

slservicetypesinaweibo

slservicetypetencentweibo

slservicetypelinkedin

兩個是國內的,其他都是國外的;下面來說詳細編碼:

-(void)shareaction

//設定分享內容;

[slcom settitle:@"

微博分享

"];//設定分享;

[slcom addimage:[uiimage

imagenamed:@"img_0155"]];

//設定分享**

[slcom

addurl

:[nsurl

urlwithstring

:@""]];

__block

slcomposeviewcontroller *slcomblock = slcom;

slcom.completionhandler= ^(slcomposeviewcontrollerresultreult)

};[slcomblock dismissviewcontrolleranimated:

yescompletion:nil];

}

ios ShareSDK 分享 登陸功能的實現

配置環境 分享 第三方登陸 必須真機除錯 真機需要 設定自己ios證書 和 setting 裡的 bitcode yes import 第三方平台的sdk標頭檔案,根據需要的平台匯入。import wxapi.h import weibosdk.h import import self initia...

原創 Android 實現微博分享功能

通過傳送下面的intent intent intent new intent intent.action send 啟動分享傳送的屬性 intent.settype text plain 分享傳送的資料型別 intent.putextra intent.extra subject,subject 分...

iOS 微信分享功能簡單實現

ps 此文以簡單實現功能為主,不足之前還望指點,大神勿噴.在此之前如何申請微信認證的key就不說了,公司一般會有人搞 自己申請乙個也非常的簡單 1.首先 微信sdk 微信sdk 位址 更多關於微信sdk資訊文件請訪問官方 微信開放平台 2.匯入微信sdk 將 下來的sdkexport資料夾匯入到工程...