点击子视图的UIButton时,我无法点击该子视图的另一个按钮

时间:2013-07-10 18:17:30

标签: iphone ios xcode

我有一个iPhone应用程序,当我点击一个按钮时,我添加一个有3个按钮的子视图(UIView)。

一个是Facebook上的公众,另一个是推特,最后一个是隐藏子视图。

我的问题是,当我点击Facebook或推特按钮并完成帖子时,我就无法点按其他按钮。

任何人都可以帮助我吗?

1 个答案:

答案 0 :(得分:1)

为什么不使用操作表呢?

以下是代码:

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

看起来像这样:

enter image description here