iPhone 获取设备唯一标示

通过,


NSString * num = [[ NSUserDefaults standardUserDefaults ] stringForKey :@ "SBFormattedPhoneNumber" ];
可以获得手机号码,这个是iTune激活时候添入的,并不是SIM卡中的,
但是使用这个API之后程序会被苹果拒绝,这个有安全隐患。 所以就别想取电话号码了,可以使用如下替代:


NSString
* phoneName = [[ UIDevice currentDevice ] name ];

NSString * phoneUniqueIdentifier = [[ UIDevice currentDevice ] uniqueIdentifier ];

你可能感兴趣的:(api,iPhone,手机,电话)