CocoaPods trunk is moving to be read-only. Read more on the blog, there are 17 months to go.
TestsTested | ✗ |
LangLanguage | Obj-CObjective C |
License | MIT |
ReleasedLast Release | Mar 2015 |
Maintained by r-plus.
AAActivityAction is Reeder like ActionSheet. Method architecture is inspired by UIActivity
and UIActivityViewController
.
QuartzCore
framework.AAActivityAction
folder to your project.QuartzCore
framework.AAActivity *activity = [[AAActivity alloc] initWithTitle:@"Safari"
image:[UIImage imageNamed:@"Safari.png"]
actionBlock:^(AAActivity *activity, NSArray *activityItems) {
// do something...
}];
AAActivityAction *activityAction = [[AAActivityAction alloc] initWithActivityItems:@[@"http://www.apple.com/"]
applicationActivities:@[activity]
imageSize:AAImageSizeSmall];
activityAction.title = @"sample title";
[activityAction show];
// or showInView
// [activityAction showInView:view];
MIT License.