gpt4 book ai didi

ios - 如何快速调用 initWith...

转载 作者:搜寻专家 更新时间:2023-11-01 06:22:54 26 4
gpt4 key购买 nike

我有一个 objective-c 类 (RDAlertView),它创建一个警报(iOS < 8 的 UIAlertView 和 ios >=8 的 UIAlertController)

这是 Objective-C 中的代码:

RDAlertView* alert = [[RDAlertView alloc] initWithTitle:@"Notification" 
message:@"message"
completion:completion:^(NSInteger buttonIndex, NSInteger cancelButtonIndex, NSArray *textflieds) { }
cancelButtonTitle:@"Ok"
otherButtonTitles:nil];

[alert show];

我的问题是:如何在不对我的类进行任何更改的情况下(如果可能)在 Swift 中调用它?

这是示例项目的链接:https://bitbucket.org/ejanowski/rdalertview-issue

最佳答案

我想这就是你需要的:

var alert = RDAlertView(title: "Notification", message: "message", completion: nil, cancelButtonTitle: "OK", otherButtonTitles: nil)
alert.show()

希望对你有帮助。

关于ios - 如何快速调用 initWith...,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30163783/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com