我正在尝试实现MRCountryPicker以选择Country Flag和Code。我已经安装了Pod。

现在我不知道如何获取委托方法或如何声明为“ MRCountryPickerDelegate”

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


  https://github.com/xtrinch/MRCountryPicker
  
  ViewController类:UIViewController,MRCountryPickerDelegate {


我收到此错误

ios - 如何使用MRCountryPickerDelegate-LMLPHP

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

最佳答案

如果我正确理解您的问题,
首先,您必须“导入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)


}

关于ios - 如何使用MRCountryPickerDelegate,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/47456506/

10-13 09:26