我目前正在爲我的通用應用程序使用UIActionsheet,效果很好,但我希望iPad操作表類似於iPhone操作表。UIActionsheet Ipad/Iphone
iPad上是否有與iPhone操作表類似的東西?或者,有沒有辦法重新定位iPad的動作和popoverview沒有方向箭頭?
感謝
編輯:這裏就是我實現並添加actionsheet
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];
雖然我會喜歡某種簡單的替代方法,但它也適用。非常感謝你 – VonKoob