Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 iPhone 应用程序,当我点击一个按钮时,我添加了一个具有 3 个按钮的子视图 (UIView)。
一个是在 Facebook 上公开,另一个是发推文,最后一个是隐藏子视图。
我的问题是,当我点击 facebook 或 tweet 按钮并完成帖子时,我无法点击其他按钮。
谁能帮我?
你为什么不使用行动表呢?
这是代码:
UIActionSheet *actionSheet = [[UIActionSheet alloc]initWithTitle:@"Share" delegate:nil cancelButtonTitle:@"Cancel" destructiveButtonTitle:nil otherButtonTitles:@"Facebook",@"Twitter", nil]; [actionSheet showInView:self.view];
它看起来像这样: