显示actionsheet
在视图中心而不是在popover
for 中iPad app
。这是允许的Appstore
吗?
问问题
180 次
1 回答
1
尝试这个 :-
UIActionSheet *popupQuery = [[UIActionSheet alloc] initWithTitle:@"options" delegate:self cancelButtonTitle:@"Cancel" destructiveButtonTitle:nil otherButtonTitles:@"Option 1", @"Option 2", nil];
popupQuery.actionSheetStyle = UIActionSheetStyleBlackOpaque;
if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad)
{
//popupQuery.
[popupQuery showInView:self.view];
}
是的,它得到了苹果的认可
希望对你有帮助
于 2013-01-08T07:53:57.997 回答