无法使用WKAlertAction和Alerts WatchKit

时间:2016-01-02 21:15:57

标签: ios cocoa-touch watchkit

这可能是一个极其愚蠢的问题,但对于我的生活,我无法弄清楚为什么我无法使用以下几行代码:

WKAlertAction *act = [WKAlertAction actionWithTitle:@"OK" style:WKAlertActionStyleCancel handler:^(void){
        NSLog(@"ALERT ACTION ");
    }];

 NSArray *actions = @[act];

[self presentAlertControllerWithTitle:@"Error" message:@"Message" preferredStyle:WKAlertControllerStyleAlert actions:alertActions];

当我将它们放入我的InterfaceController时,编译器既不识别alertWithTitle:方法也不识别presentAlertControllerWithTitle方法,也不识别WKAlertActionStyleCancel之类的东西。 WatchKit是导入的,所以不应该这样吗?

0 个答案:

没有答案