在我的应用程序中,我发现动作表没有正确显示,所以我用单个视图创建了新的演示项目,按钮动作创建了一个按钮,我有写代码,如
-(IBAction)testActionsheet:(id)sender{
UIActionSheet *objAction=[[UIActionSheet alloc] initWithTitle:nil delegate:nil cancelButtonTitle:@"Cancel" destructiveButtonTitle:nil otherButtonTitles:@"ActionSheet issue",nil];
[objAction showFromRect:CGRectMake(300, 500, 90, 9) inView:self.view
animated:YES];
}
但是从顶部展示了一些切口......是否有任何一个解决方案,使用动作表?
答案 0 :(得分:0)
UIActionSheet在iOS 8中已弃用。 请检查此链接 UIActionSheet is deprecated in iOS 8
您可以使用UIAlertController而不是动作表