私は現在、ユニバーサルアプリに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];