swift2 使用countryickerview,我想只显示电话号码,而不是文本字段左侧的标志

vatpfxk5  于 2022-11-06  发布在  Swift
关注(0)|答案(1)|浏览(168)

默认情况下,这个库显示国家国旗,国家代码和电话代码。我能够删除国家代码,但不能删除国旗。

Let cpv = CountryPickerview(frame: CGRect(x: 0, y: 0,width: 120,height:20))
UserNumber.leftView =cpv
UserNumber.leftView =.always
cpv.showCountryCodeInView = false
bwntbbo3

bwntbbo31#

如果您检查库,其中会有一些方法,如方法和属性https://github.com/kizitonwose/CountryPickerView#countrypickerview-properties
我以前没去过图书馆不过我想

func cellImageViewSize(in countryPickerView: CountryPickerView) -> CGSize{
    return 0
}

应该能解决你的问题

相关问题