“Share Screen” iOS 6

后端 未结 1 1982
轻奢々
轻奢々 2020-12-24 11:57

Can I show this \"Share Screen\" in my own app using iOS 6? Somebody that knows how?

\"iOS

相关标签:
1条回答
  • 2020-12-24 12:51

    I'm afraid you are all wrong. I'm sorry for being this negative, but your wrong answers forced me to waste time in going for futile solutions.... instead you can use this code to achive this screen:

    NSString* someText = self.textView.text;
    NSArray* dataToShare = @[someText];  // ...or whatever pieces of data you want to share.
    
    UIActivityViewController* activityViewController = 
    [[UIActivityViewController alloc] initWithActivityItems:dataToShare 
                                      applicationActivities:nil];
    [self presentViewController:activityViewController animated:YES completion:^{}];
    

    The code is from Social.framework.

    See this answer: Using Apple icons with iOS 6

    0 讨论(0)
提交回复
热议问题