0
在顯示中心顯示actionsheet
而不是popover
針對iPad app
。這是否允許在Appstore
?在iPad應用程序的中心顯示操作說明
在顯示中心顯示actionsheet
而不是popover
針對iPad app
。這是否允許在Appstore
?在iPad應用程序的中心顯示操作說明
試試這個: -
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];
}
而且是其得到蘋果的批准
希望它可以幫助你