iOS 從一個APP跳轉到另一個APP,並帶參數跳到指定頁面

來源:互聯網
上載者:User

功能實現:A跳到B並開啟B中指定頁面

步驟:

1.首先建立兩個項目(項目A,項目B),在項目B中的info.plist檔案中添加URL Types,如下圖所示:其中URL idenifier是項目B的bundle id ,URL Schemes 中添加一個命令首碼,我這裡使用“projectB”,這個名字可以自己取,運行一下項目B。

2.在項目A中添加跳轉代碼

[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"projectB://"]];
1

這裡的URL的命令首碼必須和之前自己定義的一致,我把這行代碼加到了一個button的點擊方法裡,現在點擊button就可以跳到項目B了。 

3.現在說下app之間跳轉的通訊,其實跟傳值差不多。項目A中第二個button的點擊方法添加代碼

[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"projectB://openBSecondPage"]];
1

4 . 項目B中在appDelegate中添加一個NSURL的屬性,實現一個代理方法接收從項目A傳過來的URL

-(BOOL)application:(UIApplication *)application handleOpenURL:(NSURL *)url{    self.url = url;    return YES;}
1 2 3 4 5

然後在B中第一個介面加上代碼

- (void)viewDidLoad {    [super viewDidLoad];    NSURL * url = ((AppDelegate *)[UIApplication sharedApplication].delegate).url;   ;    if(url){        //顯示一下從A擷取的url,url = projectB://openBSecondPage,host = openBSecondPage        self.label.text = [NSString stringWithFormat:@"url = %@,host = %@",[url absoluteString],[url host]];        //根據傳過來的url的host進行一些操作        if ([[url host]isEqualToString:@"openBSecondPage"]) {            //跳轉到第二個介面            [self performSegueWithIdentifier:@"second" sender:nil];        }    }}
1 2 3 4 5 6 7 8 9 10 11 12 13 14

 
 
簡而言之,就是根據從A中傳過來的URL開啟項目B後進行一些自訂動作

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.