How to use url scheme for application not installed in device

前端 未结 3 376
谎友^
谎友^ 2021-01-16 21:12

I have an application in store, which allow to display a list of items in a first view, details of an item in the second view.

I use the url schemes to access to the

3条回答
  •  走了就别回头了
    2021-01-16 21:32

    For iOS>9

    if ([[UIApplication sharedApplication] openURL:SchemaURL] == false)
    {
       [[UIApplication sharedApplication] openURL:iTunesAppURL];
    }
    

提交回复
热议问题