ios應用之間的跳轉是通過url scheme實現的。
url scheme
ios應用將自身繫結到乙個自定義的url scheme上,該scheme用於從瀏覽器活其他應用中啟動本應用。
在應用a中新增url scheme(如:a)
在應用b的info.plist中設定白名單,新增應用a的url scheme(a)
應用b中跳轉**:
- (ibaction)tiaozhuan:(uibutton *)sender
}
應用b中**:
- (ibaction)tiaozhuan:(uibutton *)sender
}
應用a中**:
if ([url.absolutestring rangeofstring:@"one"].location != nsnotfound)
return
yes;
} if ([url.absolutestring rangeofstring:@"one"].location != nsnotfound)
return
yes;}
三、應用a反跳回應用b
應用b中**:
- (ibaction)tiaozhuan:(uibutton *)sender
}
應用a中**:
if ([url.absolutestring rangeofstring:@"one"].location != nsnotfound)
return
yes;
} if ([url.absolutestring rangeofstring:@"one"].location != nsnotfound)
return
yes;
}
@inte***ce
oneviewcontroller : uiviewcontroller
@property (nonatomic, copy) nsstring *scheme;
@end
- (void)back:(id)sender
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修...
iOS兩個App應用之間的跳轉
摘要 步驟 1,新增url types項 2,配置url scheme 3,其他應用的跳轉 4,引數的接收 下面來詳細介紹實現的步驟 1,新增url types項 a,開啟專案中info.plist檔案,在infomation property list項下面增加一項url typs 2,配置url...