how can I share iOS URl Schema with parameter to be a link that I can click not just string
tazah://posts?postID=10
I need to make this a clickable link without using http
ios url-scheme
add a comment |
tazah://posts?postID=10
I need to make this a clickable link without using http
ios url-scheme
add a comment |
tazah://posts?postID=10
I need to make this a clickable link without using http
ios url-scheme
tazah://posts?postID=10
I need to make this a clickable link without using http
ios url-scheme
ios url-scheme
asked Nov 10 '18 at 9:58
Amr Abdel-Wahab
135
135
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
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)
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 Abdel-Wahab
Nov 10 '18 at 11:34
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
Nov 11 '18 at 12:05
add a comment |
Just add in you info.plist int the URL types scheme.
https://jayeshkawli.ghost.io/ios-custom-url-schemes/
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 Abdel-Wahab
Nov 10 '18 at 11:32
add a comment |
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',
autoActivateHeartbeat: false,
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
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)
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 Abdel-Wahab
Nov 10 '18 at 11:34
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
Nov 11 '18 at 12:05
add a comment |
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)
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 Abdel-Wahab
Nov 10 '18 at 11:34
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
Nov 11 '18 at 12:05
add a comment |
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)
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)
answered Nov 10 '18 at 10:24
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 Abdel-Wahab
Nov 10 '18 at 11:34
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
Nov 11 '18 at 12:05
add a comment |
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 Abdel-Wahab
Nov 10 '18 at 11:34
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
Nov 11 '18 at 12:05
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 Abdel-Wahab
Nov 10 '18 at 11:34
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 Abdel-Wahab
Nov 10 '18 at 11:34
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
Nov 11 '18 at 12:05
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
Nov 11 '18 at 12:05
add a comment |
Just add in you info.plist int the URL types scheme.
https://jayeshkawli.ghost.io/ios-custom-url-schemes/
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 Abdel-Wahab
Nov 10 '18 at 11:32
add a comment |
Just add in you info.plist int the URL types scheme.
https://jayeshkawli.ghost.io/ios-custom-url-schemes/
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 Abdel-Wahab
Nov 10 '18 at 11:32
add a comment |
Just add in you info.plist int the URL types scheme.
https://jayeshkawli.ghost.io/ios-custom-url-schemes/
Just add in you info.plist int the URL types scheme.
https://jayeshkawli.ghost.io/ios-custom-url-schemes/
answered Nov 10 '18 at 10:49
Djamal
1
1
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 Abdel-Wahab
Nov 10 '18 at 11:32
add a comment |
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 Abdel-Wahab
Nov 10 '18 at 11:32
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 Abdel-Wahab
Nov 10 '18 at 11:32
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 Abdel-Wahab
Nov 10 '18 at 11:32
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown