iOS中兩個APP之間的跳轉和通訊

2021-07-09 07:45:48 字數 602 閱讀 9300

1、在info.plist檔案中的information property list下新增一項:url types。

2、點開url types下的item 0,再點開item 0,將item 0下的url identifier改為url schemes。

nsstring *astring = @"

skipone://";

nsurl * url =[nsurl urlwithstring:astring];

二:上面**需要稍作修改。

nsstring *astring = @"skipone://"

上面這行**中在(skipone://)的後面新增一些資訊如:

nsstring *astring =[nsstring stringwithformat:@"

skipone://username=%@&age=%@

", @"

xiaoxiao

", @"

30"];

)annotation

這樣就獲取了urlstr字串,裡面需要自己根據需要的資料對字串進行處理。

iOS 兩個APP之間的跳轉

乙個程式若要跳到另乙個程式。需要在目標程式的plist檔案裡面修改 開啟info.plist,新增一項url types 展開url types,再展開item0,將item0下的url identifier修改為url scheme 話不多說,下面開始講解步驟 將這兩個工程設定好了之後,接下來上 ...

IOS兩個App應用之間的跳轉

下面來詳細介紹實現的步驟 1,新增url types項 a,開啟專案中info.plist檔案,在infomation property list項下面增加一項url typs 2,配置url scheme a,展開url types,再展開item1,將item1下的url identifier修...

IOS兩個App應用之間的跳轉

下面來詳細介紹實現的步驟 1,新增url types項 a,開啟專案中info.plist檔案,在infomation property list項下面增加一項url typs 2,配置url scheme a,展開url types,再展開item1,將item1下的url identifier修...