在我的表格视图中,我有几个自定义单元格。一个称为纽扣电池,因为它包含几个按钮。其中之一是我试图调用 UIActivityViewController 的共享按钮。但是,我无法让它工作。我对 UITableViewCell 进行了子类化,并将其称为 ButtonCell。在头文件中,我链接了一个名为 Share 的 IBAction。在实现文件(ButtonCell.m)中,我尝试了以下方法。
- (IBAction)Share
{
NSString *initialText = [NSString stringWithFormat:@"I like this Catherine Pooler Blog Post: "];
UIImage *image = [UIImage imageNamed:@"iTunesArtwork.png"];
UIActivityViewController *avc = [[UIActivityViewController alloc] initWithActivityItems:@[image, initialText] applicationActivities:nil];
[self presentViewController:avc animated:YES completion:nil];
}
但是,编译器不喜欢自我。它没有显示 presentViewController:animated:completion 的可能性。有没有办法从带有按钮的自定义单元格中显示 UIActivityViewController。感谢你的帮助。
编辑#1 感谢 Michael 和 A-live,我已经弄清楚了。再次感谢所有的帮助。
在我的 cellForRowAtIndexPath 方法中,我使用了以下代码行...
[buttonCell.shareButton addTarget:self action:@selector(shareTapped) forControlEvents:UIControlEventTouchUpInside];
通过添加目标,我能够检测到点击并调用 shareTapped 方法。然后这会调出 UIActivityViewController 并按我的计划工作!再次感谢所有信息和链接。