iOS開發,系統內建的分享簡單實現

來源:互聯網
上載者:User

標籤:

  • 由於simulator設定裡面沒有新浪微博的選項,所以選擇了真機調試,成功了.代碼不多,包含標頭檔
  • 沒有配置登入資訊的話,是沒有作用的                                                                                                
  • 具體代碼實現
     1 - (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event 2 { 3     // 1.判斷平台是否可用 4     if (![SLComposeViewController isAvailableForServiceType:SLServiceTypeSinaWeibo]) { 5         NSLog(@"平台不可用,或者沒有配置相關的帳號"); 6         return; 7     } 8      9     // 2.建立分享的控制器10     SLComposeViewController *composeVc = [SLComposeViewController composeViewControllerForServiceType:SLServiceTypeSinaWeibo];11     12     // 2.1.添加分享的文字13     [composeVc setInitialText:@"我是一個codeMan"];14     15     // 2.2.添加一個圖片16     [composeVc addImage:[UIImage imageNamed:@"xingxing"]];17     18     // 2.3.添加一個分享的連結19     [composeVc addURL:[NSURL URLWithString:@"www.baidu.com"]];20     21     // 3.彈出分享控制器22     [self presentViewController:composeVc animated:YES completion:nil];23     24     // 4.監聽使用者點擊了取消還是發送25     composeVc.completionHandler = ^(SLComposeViewControllerResult result) {26         if (result == SLComposeViewControllerResultCancelled) {27             NSLog(@"點擊了取消");28         } else {29             NSLog(@"點擊了發送");30         }31     };32 }

     

iOS開發,系統內建的分享簡單實現

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.