我目前正在为我的通用应用程序使用 UIActionsheet,效果很好,但我希望 iPad 操作表类似于 iPhone 操作表。
iPad 上是否有与 iPhone 操作表类似的内容?或者,有没有办法在没有方向箭头的情况下重新定位 iPad 操作表和弹出视图?
谢谢
编辑:这是我实现和添加操作表的代码
adActionSheet = [[UIActionSheet alloc]initWithTitle:@"Title" delegate:self cancelButtonTitle:@"Cancel" destructiveButtonTitle:nil otherButtonTitles:@"Go to Site", @"Some other button", nil];
[adActionSheet showFromRect:CGRectMake(300, 1150, 200, 200) inView:self.view animated:YES];