SDCAlertView 回调 clickButtonAtIndex 在 iOS 运行时未被调用

Posted

技术标签:

【中文标题】SDCAlertView 回调 clickButtonAtIndex 在 iOS 运行时未被调用【英文标题】:SDCAlertView callback clickButtonAtIndex not being called at runtime iOS 【发布时间】:2014-02-21 02:29:22 【问题描述】:

由于某种原因,来自 SDCAlertView POD 的 SDCAlertView clickButtonAtIndex 回调(见下面的代码块)永远不会被调用。 SDCAlertView 显示,但在我选择了警报上的按钮后,没有调用回调。 Apples alertView 可以很好地处理这个回调。我已将 <SDCAlertView.h><UIView+SDCAutoLayout.h> 导入到我的类头文件中,并确保打开工作区而不打开项目,以便可以访问 POD。

任何使用 SDCAlertView 的人都会遇到这个问题或看到我做错了什么?

- (void)alertView:(SDCAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex; 
        // *** NEVER MAKES IT IN HERE ***
        switch (buttonIndex) 
        case 0:
            NSLog(@"alertView: Cancel");
            break;
        case 1:
            NSLog(@"alertView: OK");
            break;
        default:
            NSLog(@"Blowing It: Alert not handled");
            break;
    

下面是我的项目中 SDCAlertView 之一的设置,它在我的MainViewController.m 文件中声明。我正在添加一个滑块来调整耳机的音量。

    // Setup Slider for Alert View
    UISlider *volumeSlider = [[UISlider alloc] initWithFrame:CGRectMake(20, 50, 200, 200)];
    volumeSlider.maximumValue = 10.0;
    volumeSlider.minimumValue = 1.0;
    [volumeSlider addTarget:self action:@selector(sliderHandler:) forControlEvents:UIControlEventValueChanged];

    // Setup Alert View
    SDCAlertView *noHeadsetAlertView =
               [[SDCAlertView alloc]
                initWithTitle:@"No Headset"
                message:@"You need a headset you fool!"
                delegate:nil
                cancelButtonTitle:nil
                otherButtonTitles:@"Cancel", @"Use Mic", nil];
    [volumeSlider setTranslatesAutoresizingMaskIntoConstraints:NO];
    [noHeadsetAlertView.contentView addSubview:volumeSlider];

    [volumeSlider sdc_pinWidthToWidthOfView:noHeadsetAlertView.contentView offset: -20];
    [volumeSlider sdc_horizontallyCenterInSuperview];

    [noHeadsetAlertView.contentView addConstraints:[NSLayoutConstraint constraintsWithVisualFormat:@"V:|-[volumeSlider]|"
                                                                              options:0
                                                                              metrics:nil
                                                                                views:NSDictionaryOfVariableBindings(volumeSlider)]];

    [noHeadsetAlertView show];

SDCAlertView 项目可以在 GitHub 上找到。

【问题讨论】:

【参考方案1】:

您没有在警报的初始化中设置委托。将其从 nil 更改为 self 并且应该调用该方法。

【讨论】:

以上是关于SDCAlertView 回调 clickButtonAtIndex 在 iOS 运行时未被调用的主要内容,如果未能解决你的问题,请参考以下文章

自定义 SDCAlertView

SDCAlertView 和 UIViewController 与 UIButton

在 Objective-C 类中使用时如何自定义 SDCAlertView

在 SDCAlertView 中添加约束

当用户触摸警报时,如何防止我的 SDCAlertview 关闭?

UIView 内的表格不滚动或接收触摸