how can I share iOS URl Schema with parameter to be a link that I can click not just string









up vote
0
down vote

favorite












tazah://posts?postID=10 


I need to make this a clickable link without using http










share|improve this question

























    up vote
    0
    down vote

    favorite












    tazah://posts?postID=10 


    I need to make this a clickable link without using http










    share|improve this question























      up vote
      0
      down vote

      favorite









      up vote
      0
      down vote

      favorite











      tazah://posts?postID=10 


      I need to make this a clickable link without using http










      share|improve this question













      tazah://posts?postID=10 


      I need to make this a clickable link without using http







      ios url-scheme






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked yesterday









      Amr Abd El-Wahab

      113




      113






















          2 Answers
          2






          active

          oldest

          votes

















          up vote
          0
          down vote













          You can open urls using this code



          UIApplication.shared.open(url, options: [:], completionHandler: nil)


          So in your case:



          if let url = URL(string: "tazah://posts?postID=10") 
          if UIApplication.shared.canOpenURL(url)
          UIApplication.shared.open(url, options: [:], completionHandler: nil)







          share|improve this answer




















          • yes this will open the app , but I want to share this to facebook or twitter and I can click it to open the app without using http or https as apple say "You cannot claim support for some well-known URL schemes, including http, https"
            – Amr Abd El-Wahab
            yesterday










          • Unfortunately, there is no other way than deep linking. So the only way to achieve this is to redirect the user to http/s page like you red on apple documentation.
            – kstefanou
            14 hours ago

















          up vote
          0
          down vote













          Just add in you info.plist int the URL types scheme.



          https://jayeshkawli.ghost.io/ios-custom-url-schemes/






          share|improve this answer








          New contributor




          Djamal is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.

















          • you mean I can't make it without using http or https , because apple say that "You cannot claim support for some well-known URL schemes, including http, https"
            – Amr Abd El-Wahab
            yesterday










          Your Answer






          StackExchange.ifUsing("editor", function ()
          StackExchange.using("externalEditor", function ()
          StackExchange.using("snippets", function ()
          StackExchange.snippets.init();
          );
          );
          , "code-snippets");

          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "1"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













           

          draft saved


          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53237833%2fhow-can-i-share-ios-url-schema-with-parameter-to-be-a-link-that-i-can-click-not%23new-answer', 'question_page');

          );

          Post as a guest






























          2 Answers
          2






          active

          oldest

          votes








          2 Answers
          2






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes








          up vote
          0
          down vote













          You can open urls using this code



          UIApplication.shared.open(url, options: [:], completionHandler: nil)


          So in your case:



          if let url = URL(string: "tazah://posts?postID=10") 
          if UIApplication.shared.canOpenURL(url)
          UIApplication.shared.open(url, options: [:], completionHandler: nil)







          share|improve this answer




















          • yes this will open the app , but I want to share this to facebook or twitter and I can click it to open the app without using http or https as apple say "You cannot claim support for some well-known URL schemes, including http, https"
            – Amr Abd El-Wahab
            yesterday










          • Unfortunately, there is no other way than deep linking. So the only way to achieve this is to redirect the user to http/s page like you red on apple documentation.
            – kstefanou
            14 hours ago














          up vote
          0
          down vote













          You can open urls using this code



          UIApplication.shared.open(url, options: [:], completionHandler: nil)


          So in your case:



          if let url = URL(string: "tazah://posts?postID=10") 
          if UIApplication.shared.canOpenURL(url)
          UIApplication.shared.open(url, options: [:], completionHandler: nil)







          share|improve this answer




















          • yes this will open the app , but I want to share this to facebook or twitter and I can click it to open the app without using http or https as apple say "You cannot claim support for some well-known URL schemes, including http, https"
            – Amr Abd El-Wahab
            yesterday










          • Unfortunately, there is no other way than deep linking. So the only way to achieve this is to redirect the user to http/s page like you red on apple documentation.
            – kstefanou
            14 hours ago












          up vote
          0
          down vote










          up vote
          0
          down vote









          You can open urls using this code



          UIApplication.shared.open(url, options: [:], completionHandler: nil)


          So in your case:



          if let url = URL(string: "tazah://posts?postID=10") 
          if UIApplication.shared.canOpenURL(url)
          UIApplication.shared.open(url, options: [:], completionHandler: nil)







          share|improve this answer












          You can open urls using this code



          UIApplication.shared.open(url, options: [:], completionHandler: nil)


          So in your case:



          if let url = URL(string: "tazah://posts?postID=10") 
          if UIApplication.shared.canOpenURL(url)
          UIApplication.shared.open(url, options: [:], completionHandler: nil)








          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered yesterday









          kstefanou

          296




          296











          • yes this will open the app , but I want to share this to facebook or twitter and I can click it to open the app without using http or https as apple say "You cannot claim support for some well-known URL schemes, including http, https"
            – Amr Abd El-Wahab
            yesterday










          • Unfortunately, there is no other way than deep linking. So the only way to achieve this is to redirect the user to http/s page like you red on apple documentation.
            – kstefanou
            14 hours ago
















          • yes this will open the app , but I want to share this to facebook or twitter and I can click it to open the app without using http or https as apple say "You cannot claim support for some well-known URL schemes, including http, https"
            – Amr Abd El-Wahab
            yesterday










          • Unfortunately, there is no other way than deep linking. So the only way to achieve this is to redirect the user to http/s page like you red on apple documentation.
            – kstefanou
            14 hours ago















          yes this will open the app , but I want to share this to facebook or twitter and I can click it to open the app without using http or https as apple say "You cannot claim support for some well-known URL schemes, including http, https"
          – Amr Abd El-Wahab
          yesterday




          yes this will open the app , but I want to share this to facebook or twitter and I can click it to open the app without using http or https as apple say "You cannot claim support for some well-known URL schemes, including http, https"
          – Amr Abd El-Wahab
          yesterday












          Unfortunately, there is no other way than deep linking. So the only way to achieve this is to redirect the user to http/s page like you red on apple documentation.
          – kstefanou
          14 hours ago




          Unfortunately, there is no other way than deep linking. So the only way to achieve this is to redirect the user to http/s page like you red on apple documentation.
          – kstefanou
          14 hours ago












          up vote
          0
          down vote













          Just add in you info.plist int the URL types scheme.



          https://jayeshkawli.ghost.io/ios-custom-url-schemes/






          share|improve this answer








          New contributor




          Djamal is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.

















          • you mean I can't make it without using http or https , because apple say that "You cannot claim support for some well-known URL schemes, including http, https"
            – Amr Abd El-Wahab
            yesterday














          up vote
          0
          down vote













          Just add in you info.plist int the URL types scheme.



          https://jayeshkawli.ghost.io/ios-custom-url-schemes/






          share|improve this answer








          New contributor




          Djamal is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.

















          • you mean I can't make it without using http or https , because apple say that "You cannot claim support for some well-known URL schemes, including http, https"
            – Amr Abd El-Wahab
            yesterday












          up vote
          0
          down vote










          up vote
          0
          down vote









          Just add in you info.plist int the URL types scheme.



          https://jayeshkawli.ghost.io/ios-custom-url-schemes/






          share|improve this answer








          New contributor




          Djamal is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.









          Just add in you info.plist int the URL types scheme.



          https://jayeshkawli.ghost.io/ios-custom-url-schemes/







          share|improve this answer








          New contributor




          Djamal is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.









          share|improve this answer



          share|improve this answer






          New contributor




          Djamal is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.









          answered yesterday









          Djamal

          1




          1




          New contributor




          Djamal is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.





          New contributor





          Djamal is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.






          Djamal is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.











          • you mean I can't make it without using http or https , because apple say that "You cannot claim support for some well-known URL schemes, including http, https"
            – Amr Abd El-Wahab
            yesterday
















          • you mean I can't make it without using http or https , because apple say that "You cannot claim support for some well-known URL schemes, including http, https"
            – Amr Abd El-Wahab
            yesterday















          you mean I can't make it without using http or https , because apple say that "You cannot claim support for some well-known URL schemes, including http, https"
          – Amr Abd El-Wahab
          yesterday




          you mean I can't make it without using http or https , because apple say that "You cannot claim support for some well-known URL schemes, including http, https"
          – Amr Abd El-Wahab
          yesterday

















           

          draft saved


          draft discarded















































           


          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53237833%2fhow-can-i-share-ios-url-schema-with-parameter-to-be-a-link-that-i-can-click-not%23new-answer', 'question_page');

          );

          Post as a guest














































































          Popular posts from this blog

          Top Tejano songwriter Luis Silva dead of heart attack at 64

          ReactJS Fetched API data displays live - need Data displayed static

          Evgeni Malkin