ios倆個APP之間跳轉、傳值

來源:互聯網
上載者:User

ios倆個APP之間跳轉、傳值
兩個APP之間的跳轉是通過[[UIApplication sharedApplication] openURL:url]這種方式來實現的。

1.首先設定第一個APP的url地址

2.接著設定第二個APP的url地址

3.需要跳轉的時候

NSString *urlString = [NSString stringWithFormat:@"AppJumpSecond://%@",textField.text];[[UIApplication sharedApplication] openURL:[NSURL URLWithString:urlString]];

我這裡將textField的文字也傳過去

同樣的,在第二個頁面也是如此

NSString *urlString = [NSString stringWithFormat:@"AppJumpFirst://%@",textField.text];[[UIApplication sharedApplication] openURL:[NSURL URLWithString:urlString]];

這樣就能相互跳轉了

4.處理傳過去的資料

在上面傳了textField的資料,接收時在AppDelegate的

- (BOOL)application:(UIApplication *)application openURL:(NSURL *)url sourceApplication:(NSString *)sourceApplication annotation:(id)annotation方法裡。

在AppDelegate裡設定屬性

@property (nonatomic, strong) RootViewController *rvc;

在didFinishLaunchingWithOptions方法裡添加

self.rvc = [[RootViewController alloc] init];UINavigationController *nc = [[UINavigationController alloc] initWithRootViewController:self.rvc];self.window.rootViewController = nc;

添加代碼塊

- (BOOL)application:(UIApplication *)application openURL:(NSURL *)url sourceApplication:(NSString *)sourceApplication annotation:(id)annotation{    self.rvc.textField.text = [[url host] stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding];    return YES;}

使得textField顯示另一個頁面傳過來的資料。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.