ios俩个APP之间跳转、传值
生活随笔
收集整理的這篇文章主要介紹了
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顯示另一個頁面傳過來的數據。
總結
以上是生活随笔為你收集整理的ios俩个APP之间跳转、传值的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 有一个测试微信删除软件叫wool,微信自
- 下一篇: 框架分析--框架的类关系图