iOS中撥打電話的三種方式

2021-09-24 14:48:02 字數 644 閱讀 5766

// 這種方式 撥打完**回不到原來的應用,會停留在通訊錄裡,而且是直接撥打,不彈出提示

// 下面兩種方法,打完**後還會回到原來的程式,也會彈出提示

nsstring* telstring = [[nsstring alloc] initwithformat:@"tel:%@",@"186***x6979"];

uiwebview* callwebview = [[uiwebview alloc] init];

[callwebview loadrequest:[nsurlrequest requestwithurl:[nsurl urlwithstring:telstring]]];

[self.view addsubview:callwebview];

nsstring* telstring = [[nsstring alloc] initwithformat:@"telprompt:%@",@"186***x6979"];
注意:

ios10之後建議使用openurl:options:completionhandler:方法呼叫url

}];

iOS 撥打電話三種方式

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

iOS 撥打電話三種方式總結

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

iOS 撥打電話三種方式總結

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