如何制作“打开方式”菜单?你以前见过他们。照片、Instagram、电子邮件。
问问题
830 次
1 回答
2
我曾经想知道如何制作 Apple 的“打开方式”菜单。这真的很容易!
NSString* someText = @"Sent from my app!";
UIImage* image = imageview.image;
NSArray* dataToShare = @[someText, image]; //Array of sharable stuff.
UIActivityViewController* activityViewController =
[[UIActivityViewController alloc] initWithActivityItems:dataToShare
applicationActivities:nil];
[self presentViewController:activityViewController animated:YES completion:^{}];
就是这样。你真的不需要更多,因为它非常简单。
于 2012-12-20T21:25:52.417 回答