创建共享菜单并添加图像

时间:2010-02-01 10:00:00

标签: iphone image menu share

我有两个问题,我无法解决:

1)如何创建这样的菜单 - > Example http://www.momolog.com/media/img/manual/share_menu.jpg
2)如何添加多个图像,如名为HotBook的iApp? 。
在此先感谢您的帮助 肖恩

1 个答案:

答案 0 :(得分:1)

旧帖子,但这可能有助于其他人遇到此页...

对于#1,这是一个UIActionSheet。您可以使用以下方法对其进行实例化:

UIActionSheet *actionSheet = [[UIActionSheet alloc] initWithTitle:@"Share" delegate:self cancelButtonTitle:@"Cancel" destructiveButtonTitle:nil otherButtonTitles:@"On Facebook", @"On Twitter", nil];
    [actionSheet showInView:self.view];
    [actionSheet release];  

请注意,您的UIViewController必须符合UIActionSheetDelegate协议。