iOS 撥打電話的幾種型別

2021-07-05 22:13:33 字數 639 閱讀 3884

//ios 中有三種撥打**的方式

//1  可以直接打**,,沒有那種呼叫型別的彈框撥打結束後停留在通訊錄

nsstring *phonenumberstring1 = @"tel:189********";

[[nsurl

urlwithstring:phonenumberstring1]];

//2  會出現呼叫彈框撥打完**留在程式中

nsstring *phonenumberstring2 = @"tel:189********";

uiwebview *phoneweb = [[uiwebview

alloc]init];

[phoneweb loadrequest:[nsurlrequest

requestwithurl:[nsurl

urlwithstring:phonenumberstring2]]];

[self.view addsubview:phoneweb];

//3   和第二中其實是一樣的效果

nsstring *phonenumberstring3 = @"telprompt://189********";

[[nsurl

urlwithstring:phonenumberstring3]];

iOS撥打電話

1,這種方法,撥打完 回不到原來的應用,會停留在通訊錄裡,而且是直接撥打,不彈出提示 nsmutablestring str nsmutablestring alloc initwithformat tel 186 x6979 nslog str str 2,這種方法,打完 後還會回到原來的程式,也...

iOS 撥打電話

1.這種方法,撥打完 回不到原來的應用,會停留在通訊錄裡,而且是直接撥打,不彈出提示 nsmutablestring str nsmutablestring alloc initwithformat tel 186 x6979 2.這種方法,打完 後還會回到原來的程式,也會彈出提示,推薦這種 nsm...

iOS程式撥打電話

三種方法,各有不同,拿來給大家分享,希望給大家有所幫助 1,這種方法,撥打完 回不到原來的應用,會停留在通訊錄裡,而且是直接撥打,不彈出提示 nsmutablestring str nsmutablestring alloc initwithformat tel 186 x6979 nslog st...