web-dev-qa-db-ja.com

UIAlertControllerを使用してUIActionSheetを置き換える方法は?

SDK 6.0に基づいた古いiOSプロジェクトを保守しています。

このプロジェクトのメソッドと呼ばれる

-(void) showComboBox:(UIView*)view:withOptions:(NSDictionary*)options

コンボボックスを表示するために使用されます。目標を達成するために、iOS8で廃止されたU​​IActionSheetを使用しました。

私の解決策はこのようなものです:

        if (floor(NSFoundationVersionNumber) > NSFoundationVersionNumber10_8) {
        UIAlertController* alertController = [UIAlertController 
           alertControllerWithTitle:@"title" 
           message:@"message" 
           preferredStyle:UIAlertControllerStyleActionSheet];

        UIAlertAction* item = [UIAlertAction actionWithTitle:@"item" 
           style:UIAlertActionStyleDefault 
           handler:^(UIAlertAction *action) {
            //do something here 
            //inform the selection to the WebView 
            ...
            [alertController dismissViewControllerAnimated:YES completion:nil];
        }];

        UIAlertAction* cancelAction = [UIAlertAction actionWithTitle:@"Cancel" style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {
            [alertController dismissViewControllerAnimated:YES completion:nil];
        }];

        [alertController addAction:item];
        [alertController addAction:cancelAction];
        //I am not sure whether it's the right way
        if ([view.nextResponder isKindOfClass:UIViewController.class]) {
            UIViewController* vc = (UIViewController*)view.nextResponder;
            [vc presentViewController:alertController animated:YES completion:nil];
        }

それは適切な解決策ですか?

これは私がほとんどのことです懸念:UIAlertControllerをUIViewControllerに追加する必要がありますが、UIViewのポインターしか取得できないため、view.nextResponderを使用して必要なものを取得しますが、それは良い方法?

49
Don_Chen

次のコードを使用してUIAlertViewControllerを使用してアクションシートを表示しましたが、完璧に機能します。

スイフト

let alert = UIAlertController(title: "Action Title", message: "Action Message", preferredStyle: .actionSheet)
let action = UIAlertAction(title: "Item", style: .default) {
    UIAlertAction in
    // Write your code here
}
alert.addAction(action)

let cancelAction = UIAlertAction(title: "Cancel", style: .cancel) {
    UIAlertAction in
    // It will dismiss action sheet
}
alert.addAction(cancelAction)
self.present(alert, animated: true, completion: nil)

目的C

- (IBAction)buttonClicked:(id)sender {

    UIAlertController *actionSheet = [UIAlertController alertControllerWithTitle:@"Action Sheet" message:@"Using the alert controller" preferredStyle:UIAlertControllerStyleActionSheet];

    [actionSheet addAction:[UIAlertAction actionWithTitle:@"Cancel" style:UIAlertActionStyleCancel handler:^(UIAlertAction *action) {

        // Cancel button tappped.
        [self dismissViewControllerAnimated:YES completion:^{
        }];
    }]];

    [actionSheet addAction:[UIAlertAction actionWithTitle:@"Delete" style:UIAlertActionStyleDestructive handler:^(UIAlertAction *action) {

        // Distructive button tapped.
        [self dismissViewControllerAnimated:YES completion:^{
        }];
    }]];

    [actionSheet addAction:[UIAlertAction actionWithTitle:@"OK" style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {

        // OK button tapped.

        [self dismissViewControllerAnimated:YES completion:^{
        }];
    }]];

    // Present action sheet.
    [self presentViewController:actionSheet animated:YES completion:nil];
}

編集:

ここでUIViewControllerオブジェクトを取得する必要があります。グローバル変数を設定するか、デリゲートメソッドを呼び出すか、通知を使用してこのコードでView Controllerオブジェクトを取得できます。

上記のコードの最後の行は次のようになります。

[self.viewController presentViewController:actionSheet animated:YES completion:nil];

self.viewControllerは、このビューを実際に取得する前に設定されるグローバル変数です。

これは、view.nextResponderを使用しているアプローチなので。うまくいかないのではないかと心配しています。

68
Kampai

プロフィール写真の変更にアクションシートを使用しました。キャンセルまたは写真選択ビューを押すとビューから追い出されたので、私はカンパイのアプローチに従い、dismissviewControllerコールを削除しました

UIAlertController *actionSheet = [UIAlertController alertControllerWithTitle:nil message:nil preferredStyle:UIAlertControllerStyleActionSheet];

[actionSheet addAction:[UIAlertAction actionWithTitle:@"Cancel" style:UIAlertActionStyleCancel handler:^(UIAlertAction *action) {

    // Cancel button tappped do nothing.

}]];

[actionSheet addAction:[UIAlertAction actionWithTitle:@"Take photo" style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {

    // take photo button tapped.
    [self takePhoto];

}]];

[actionSheet addAction:[UIAlertAction actionWithTitle:@"Choose photo" style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {

    // choose photo button tapped.
    [self choosePhoto];

}]];

[actionSheet addAction:[UIAlertAction actionWithTitle:@"Delete Photo" style:UIAlertActionStyleDestructive handler:^(UIAlertAction *action) {

    // Distructive button tapped.
    [self deletePhoto];

}]];
29
vladicabg

迅速な更新-

    let actionSheet = UIAlertController.init(title: "Please choose a source type", message: nil, preferredStyle: .actionSheet)
    actionSheet.addAction(UIAlertAction.init(title: "Take Photo", style: UIAlertActionStyle.default, handler: { (action) in
        self.openCamera()
    }))
    actionSheet.addAction(UIAlertAction.init(title: "Choose Photo", style: UIAlertActionStyle.default, handler: { (action) in
        self.showPhotoLibrary()
    }))
    actionSheet.addAction(UIAlertAction.init(title: "Cancel", style: UIAlertActionStyle.cancel, handler: { (action) in
        // self.dismissViewControllerAnimated(true, completion: nil) is not needed, this is handled automatically,
         //Plus whatever method you define here, gets called,
        //If you tap outside the UIAlertController action buttons area, then also this handler gets called.
    }))
    //Present the controller
    self.present(actionSheet, animated: true, completion: nil)
14
Saurabh Yadav

Swift 4

        let alert = UIAlertController(title: "Select One", message: nil, preferredStyle: UIAlertControllerStyle.actionSheet)
        alert.addAction(UIAlertAction(title: "Cancel", style: UIAlertActionStyle.cancel, handler: nil))
        alert.addAction(UIAlertAction(title: "Export", style: UIAlertActionStyle.default, handler: { (action) in

            // TODO: Export wordlist

        }))
        alert.addAction(UIAlertAction(title: "Import", style: UIAlertActionStyle.default, handler: { (action) in

            // TODO: Import wordlist
        }))

        self.present(alert, animated: true, completion: nil)
5

とてもシンプルに見えるかもしれませんが、UIAlertControllerの使用には厄介な問題があります。起こりやすいメモリリークです。問題があるかどうかをテストするには、View Controllerのdeallocメソッドにブレークポイントを設定し、適切に割り当てが解除されているかどうかを確認します。

私はかなり長い間解決策を探していましたが、ここでアプリでアラートコントローラーを使用する方法を示します。

+ (void)alertWithPresenting:(UIViewController *)presenting title:(NSString *)title
                       text:(NSString *)text buttons:(NSArray *)buttons
                    handler:(void (^)(UIAlertAction *action, NSUInteger index))handler
{
        UIAlertController *alert = [UIAlertController
                                    alertControllerWithTitle:title message:text
                                    preferredStyle:UIAlertControllerStyleAlert];
        __weak __typeof(alert) weakAlert = alert;
        for (NSString *title in buttons) {
                UIAlertActionStyle style = UIAlertActionStyleDefault;
                if ([title isEqualToString:[L10n cancelButton]])
                        style = UIAlertActionStyleCancel;
                else if ([title isEqualToString:[L10n deleteButton]])
                        style = UIAlertActionStyleDestructive;
                else if ([title isEqualToString:[L10n archiveButton]])
                        style = UIAlertActionStyleDestructive;

                UIAlertAction *action = [UIAlertAction actionWithTitle:title style:style handler:^(UIAlertAction *action) {
                        if (handler != nil)
                                handler(action, [buttons indexOfObject:action.title]);
                        [weakAlert dismissViewControllerAnimated:YES completion:nil];
                }];
                [alert addAction:action];
        }
        [presenting presentViewController:alert animated:YES completion:nil];
}

これだけではありません。 View Controllerでの使用例を次に示します。私の場合、tableviewは検索を使用しているため、コントローラーの表示が異なる場合があります。

- (void) deleteCases:(NSArray *)selectedRows
{
        NSString *text = NSLocalizedStringWithDefaultValue(@"cases.delete.alert.text",
                                                           @"Localizable",  [NSBundle mainBundle],
                                                           @"Deleted cases cannot be restored. Continue with delete?",
                                                           @"Delete alert text");
        NSString *title = NSLocalizedStringWithDefaultValue(@"cases.delete.alert.title",
                                                            @"Localizable",  [NSBundle mainBundle],
                                                            @"Delete cases", @"Detete alert title");
        UIViewController *presenting = self.searchController.active ? self.searchController : self;
        __weak __typeof(presenting) weakPresenting = presenting;
        __weak __typeof(self) weakSelf = self;
        [YourClassName alertWithPresenting:weakPresenting title:title text:text
                                   buttons:@[[L10n deleteButton], [L10n cancelButton]]
                                   handler:^(UIAlertAction *action, NSUInteger index)
        {
                if (action.style == UIAlertActionStyleDestructive) {
                        __typeof(weakSelf) strongSelf = weakSelf;
                        // Perform your actions using @strongSelf
                }
         }];
}
0

代わりにview.window.rootViewControllerを使用できます。プレゼンターを気にしない場合は、それで問題ありません。

0
Roman Temchenko