之前網上流行兩種方式獲取iphone本機號碼:
1.讀取使用者設定的號碼
nsstring *num = [[nsuserdefaults standarduserdefaults] stringforkey:@"sbformattedphonenumber
"];
2.私有api,需要coretelephony.framework的支援
extern nsstring*ctsettingcopymyphonenumber();-(nsstring *) phonenumber
3.讀取plist檔案
nsstring *commcenter = @"";nsdictionary *dict =[nsdictionary dictionarywithcontentsoffile:commcenter];
nsstring *phonenumber = [dict valueforkey:@"
phonenumber"];
nslog([nsstring stringwithformat:
@"phone number: %@
",phonenumber],nil);
當然了,看**也知道,需要越獄機才行。蘋果pp助手通過資料線連線iphone之後可以讀取到本機號碼,不需要越獄,我還不知道其方法。
希望知道的能給我說下,(*^__^*) 嘻嘻……。
ios獲取本機號碼等
步驟如下 1 匯入coretelephony這個private framework 2 在 m中加入紅字部分 import h extern nsstring ctsettingcopymyphonenumber implementation nsstring mynumber end 其實很多地方...
獲取本機號碼,本機IP
獲取本機號碼 telephonymanager phonemgr telephonymanager this.getsystemservice context.telephony service txtphonenumber.settext phonemgr.getline1number txtph...
紹棠 ios開發 獲取本機的手機號碼
步驟如下 2 在 m中加入紅字部分 import h extern nsstring ctsettingcopymyphonenumb er implementation nsstring mynumber end 其實很多地方都寫了 標識extern nsstring ctsettingcopym...