iOS呼叫系統功能

2021-07-27 10:49:48 字數 1094 閱讀 2919

在ios開發過程中,有時我們想在應用內實現打**、發簡訊、開啟safari瀏覽器功能,具體常用功能如下:

openurl:[nsurl urlwithstring:@"tel://185***x0496"]])

openurl:[nsurl urlwithstring:@"telprompt://185***x0496"]])

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

[webview loadrequest:[nsurlrequest

requestwithurl:

[nsurl urlwithstring:@"tel://185***x0496"]]];

[self

.view addsubview:webview];

canopenurl:[nsurl urlwithstring:@""]])

在ios開發過程中,有時我們想在應用內實現跳轉到系統設定介面,具體常用功能如下:

注意:想要實現應用內跳轉到系統設定介面功能,需要先在targets-info-url types-url schemes中新增prefs

canopenurl:[nsurl urlwithstring:@"prefs:root=wifi"]])

canopenurl:[nsurl urlwithstring:@"prefs:root=bluetooth"]])

canopenurl:[nsurl urlwithstring:@"prefs:root=general"]])

canopenurl:[nsurlurlwithstring:

@"prefs:root=general&path=about"]])

canopenurl:[nsurl urlwithstring:@"prefs:

root=location_services"]])

canopenurl:[nsurl urlwithstring:@"prefs:

root=notifications_id"]])

ios 呼叫系統 設定 裡的功能

一鍵開啟移動蜂窩網路設定 nsurl url nsurl urlwithstring prefs root mobile data settings id 蜂窩網路 prefs root mobile data settings id 安裝後第一次執行軟體時,系統會彈出提示使用者是否允許軟體獲取當前...

iOS呼叫系統發簡訊功能詳解

ios呼叫系統的發簡訊功能可以分為兩種 1,程式外呼叫系統發簡訊。2,程式內呼叫系統發簡訊。第二種的好處是使用者發簡訊之後還可以回到app。這對app來說非常重要。這個方法其實很簡單,直接呼叫openurl即可 uiapplication sharedapplication openurl nsur...

iOS 呼叫系統發簡訊功能的實現

這個方法其實很簡單,直接呼叫openurl即可 1 匯入messageui.framework,並引入標頭檔案 import2 實現 方法mfmessagecomposeviewcontrollerdelegate void messagecomposeviewcontroller mfmessag...