带有ios 8一键问题的ActionSheet

时间:2014-11-21 05:59:59

标签: ipad ios8 uiactionsheet

在我的应用程序中,我发现动作表没有正确显示,所以我用单个视图创建了新的演示项目,按钮动作创建了一个按钮,我有写代码,如

-(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];
}

但是从顶部展示了一些切口......是否有任何一个解决方案,使用动作表?

1 个答案:

答案 0 :(得分:0)

UIActionSheet在iOS 8中已弃用。 请检查此链接 UIActionSheet is deprecated in iOS 8

您可以使用UIAlertController而不是动作表

UIAlertController