加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

objective-c – SLComposeViewController CompletionHandler

发布时间:2020-12-15 01:58:55 所属栏目:百科 来源:网络整理
导读:嗨,如果使用SLComposeViewController CompletionHandler完成推文,我该如何收到通知。以下是发送推文的代码 if ([SLComposeViewController isAvailableForServiceType:SLServiceTypeTwitter]) { SLComposeViewController *tweetSheet = [SLComposeViewContr
嗨,如果使用SLComposeViewController CompletionHandler完成推文,我该如何收到通知。以下是发送推文的代码

if ([SLComposeViewController isAvailableForServiceType:SLServiceTypeTwitter])
    {
        SLComposeViewController *tweetSheet = [SLComposeViewController composeViewControllerForServiceType:SLServiceTypeTwitter];
        [tweetSheet setInitialText:@"Tweeting from my own app! :)"];
        [tweetSheet addURL:[NSURL URLWithString:@"www.someurl.com"]];

        [self presentViewController:tweetSheet animated:YES completion:NULL];
    }

解决方法

找到答案

- (void)showTweetSheet
{
  //  Create an instance of the Tweet Sheet
  SLComposeViewController *tweetSheet = [SLComposeViewController
                                         composeViewControllerForServiceType:
                                         SLServiceTypeTwitter];

  // Sets the completion handler.  Note that we don't know which thread the
  // block will be called on,so we need to ensure that any UI updates occur
  // on the main queue
  tweetSheet.completionHandler = ^(SLComposeViewControllerResult result) {
    switch(result) {
        //  This means the user cancelled without sending the Tweet
      case SLComposeViewControllerResultCancelled:
        break;
        //  This means the user hit 'Send'
      case SLComposeViewControllerResultDone:
        break;
    }

    //  dismiss the Tweet Sheet
    dispatch_async(dispatch_get_main_queue(),^{
      [self dismissViewControllerAnimated:NO completion:^{
        NSLog(@"Tweet Sheet has been dismissed.");
      }];
    });
  };

  //  Set the initial body of the Tweet
  [tweetSheet setInitialText:@"just setting up my twttr"];

  //  Adds an image to the Tweet.  For demo purposes,assume we have an
  //  image named 'larry.png' that we wish to attach
  if (![tweetSheet addImage:[UIImage imageNamed:@"larry.png"]]) {
    NSLog(@"Unable to add the image!");
  }

  //  Add an URL to the Tweet.  You can add multiple URLs.
  if (![tweetSheet addURL:[NSURL URLWithString:@"http://twitter.com/"]]){
    NSLog(@"Unable to add the URL!");
  }

  //  Presents the Tweet Sheet to the user
  [self presentViewController:tweetSheet animated:NO completion:^{
    NSLog(@"Tweet sheet has been presented.");
  }];
}

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读