出于某种原因,从未调用来自 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;
    }
}

下面是在我的 MainViewController.m 文件中声明的项目中 SDCAlertView 之一的设置。我正在添加一个滑块来调整耳机的音量。
    // 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 上找到。

最佳答案

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

10-08 05:34