0

我正在尝试实现 MRCountryPicker 来选择国家标志和代码。我已经安装了 pod。

现在我不知道如何获得委托方法或如何声明这样的“MRCountryPickerDelegate”

有关更多详细信息,请查看

https://github.com/xtrinch/MRCountryPicker

类视图控制器:UIViewController,MRCountryPickerDelegate {

我收到这个错误

在此处输入图像描述

感谢您的赞赏和帮助..谢谢。

4

1 回答 1

0

如果我正确理解你的问题,首先你必须“导入 MICountryPicker”,然后你写“MRCountryPicker”!图书馆是“MICountryPicker”,请检查您的拼写并确保您写的是真实的。MICountryPickerViewDelegate 的示例:

@objc public protocol MICountryPickerDelegate: class {
func countryPicker(picker: MICountryPicker, didSelectCountryWithName name: String, code: String)
@objc optional func countryPicker(picker: MICountryPicker, didSelectCountryWithName name: String, code: String, dialCode: String)

}

于 2018-04-14T14:58:46.213 回答