Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

"Share Screen" iOS 6

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

iOS Share Screen

like image 913
Gustaf Rosenblad Avatar asked Sep 14 '12 05:09

Gustaf Rosenblad


People also ask

Can you screen share on iPhone 6?

1) Ensure that iPhone 6/6 Plus and Apple TV are on the same internet connection. 2) Swipe up from the bottom on iPhone screen and tap on Airplay mirroring. 3) Tap Apple TV from a list of scanned devices to connect the TV with iPhone. 4) If prompted, enter the code for creating a connection with TV.

Can I share my screen in FaceTime?

To share your screen on iPhone or iPad, first run the FaceTime app and make a call to someone else who also has FaceTime set up. Once you're connected, tap the “Screen Sharing” button in the toolbar that looks like a rectangle with a person in front of it. In the pop-up that appears, tap “Share My Screen.”

How do I share screen on Apple devices?

On the Mac you want to share, choose Apple menu > System Preferences, click Sharing , select Screen Sharing, then note the name and address of the Mac (it's listed on the right).


1 Answers

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

like image 78
Ertai Avatar answered Sep 19 '22 22:09

Ertai