もちろん、他のメニューボタンを使用して、このようなメニューを作成したいと思います。それを表すデフォルトのViewControllerはありますか、それとも自分で画像を取得して作成する必要がありますか?.
UIActionSheet
を使用する必要があります。
まず、ViewController.hファイルにUIActionSheetDelegate
を追加する必要があります。
次に、アクションシートを参照できます:
UIActionSheet *popup = [[UIActionSheet alloc] initWithTitle:@"Select Sharing option:" delegate:self cancelButtonTitle:@"Cancel" destructiveButtonTitle:nil otherButtonTitles:
@"Share on Facebook",
@"Share on Twitter",
@"Share via E-mail",
@"Save to Camera Roll",
@"Rate this App",
nil];
popup.tag = 1;
[popup showInView:self.view];
次に、各呼び出しを処理する必要があります。
- (void)actionSheet:(UIActionSheet *)popup clickedButtonAtIndex:(NSInteger)buttonIndex {
switch (popup.tag) {
case 1: {
switch (buttonIndex) {
case 0:
[self FBShare];
break;
case 1:
[self TwitterShare];
break;
case 2:
[self emailContent];
break;
case 3:
[self saveContent];
break;
case 4:
[self rateAppYes];
break;
default:
break;
}
break;
}
default:
break;
}
}
これはiOS 8.xでは非推奨になりました https://developer.Apple.com/documentation/uikit/uialertcontroller#//Apple_ref/occ/cl/UIAlertController
IActionSheet のドキュメントをご覧ください。
NSString *actionSheetTitle = @"Action Sheet Demo"; //Action Sheet Title
NSString *destructiveTitle = @"Destructive Button"; //Action Sheet Button Titles
NSString *other1 = @"Other Button 1";
NSString *other2 = @"Other Button 2";
NSString *other3 = @"Other Button 3";
NSString *cancelTitle = @"Cancel Button";
UIActionSheet *actionSheet = [[UIActionSheet alloc]
initWithTitle:actionSheetTitle
delegate:self
cancelButtonTitle:cancelTitle
destructiveButtonTitle:destructiveTitle
otherButtonTitles:other1, other2, other3, nil];
[actionSheet showInView:self.view];
UIActionSheetと呼ばれます。次のように作成します。
NSString *actionSheetTitle = @"Action Sheet Demo"; //Action Sheet Title
NSString *destructiveTitle = @"Destructive Button"; //Action Sheet Button Titles
NSString *other1 = @"Other Button 1";
NSString *other2 = @"Other Button 2";
NSString *other3 = @"Other Button 3";
NSString *cancelTitle = @"Cancel Button";
UIActionSheet *actionSheet = [[UIActionSheet alloc]
initWithTitle:actionSheetTitle
delegate:self
cancelButtonTitle:cancelTitle
destructiveButtonTitle:destructiveTitle
otherButtonTitles:other1, other2, other3, nil];
[actionSheet showInView:self.view];
UISctionSheetDelegateを実装して、ボタンアクションに応答します。
詳細については、このチュートリアルをご覧ください。 http://mobile.tutsplus.com/tutorials/iphone/uiactionsheet_uiactionsheetdelegate (コードはこのチュートリアルのものです)
探しているものはアクションシートと呼ばれます。詳細についてはこちらをご覧ください http://developer.Apple.com/library/ios/#DOCUMENTATION/UIKit/Reference/UIActionSheet_Class/Reference/Reference.html