iOS 9: get CNContact country code and phone number

后端 未结 5 1255
-上瘾入骨i
-上瘾入骨i 2020-12-09 10:42

I want to get the country code and phone number from CNContact on iOS 9. I tried many things but couldn\'t find a way. The best result I achieved is printing:



        
5条回答
  •  佛祖请我去吃肉
    2020-12-09 11:07

    Objective-C:

    [number.value valueForKey:@"countryCode"]
    

    Swift:

    number.value.valueForKey("countryCode") as? String
    

    valueForKey is not private, and your app will not get rejected.

提交回复
热议问题