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

Multi tool use
up vote
0
down vote
favorite
tazah://posts?postID=10
I need to make this a clickable link without using http
ios url-scheme
add a comment |
up vote
0
down vote
favorite
tazah://posts?postID=10
I need to make this a clickable link without using http
ios url-scheme
add a comment |
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
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 2 days ago


Amr Abd El-Wahab
113
113
add a comment |
add a comment |
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)
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
2 days 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
yesterday
add a comment |
up vote
0
down vote
Just add in you info.plist int the URL types scheme.
https://jayeshkawli.ghost.io/ios-custom-url-schemes/
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
2 days ago
add a comment |
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)
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
2 days 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
yesterday
add a comment |
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)
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
2 days 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
yesterday
add a comment |
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)
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 2 days ago


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
2 days 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
yesterday
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 Abd El-Wahab
2 days 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
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
2 days 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
2 days 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
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
yesterday
add a comment |
up vote
0
down vote
Just add in you info.plist int the URL types scheme.
https://jayeshkawli.ghost.io/ios-custom-url-schemes/
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
2 days ago
add a comment |
up vote
0
down vote
Just add in you info.plist int the URL types scheme.
https://jayeshkawli.ghost.io/ios-custom-url-schemes/
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
2 days ago
add a comment |
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/
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/
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.
answered 2 days ago
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
2 days ago
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 Abd El-Wahab
2 days ago
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
2 days ago
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
2 days ago
add a comment |
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
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
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
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
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
YYZmv7EiEtaJ98 hC1NN3SwWouOPEXGQdVc8Yzc1j