---
title: "Linking App-Store link on app in iOS"  
description: "Linking App-Store link on app in iOS"  
author: "Tarun Kumar"  
published: 2015-12-17  
updated: 2015-12-17  
canonical: https://www.mindstick.com/forum/33748/linking-app-store-link-on-app-in-ios  
category: "iphone"  
tags: ["iphone", "ios", "objective c"]  
reading_time: 1 minute  

---

# Linking App-Store link on app in iOS

I was creating an app([free version](https://answers.mindstick.com/qa/36063/can-i-monetize-a-blog-with-a-free-version)), I have added a [button](https://www.mindstick.com/articles/63/how-to-add-button-in-datagridview-in-csharp-dot-net) inside our free version app. I want to set link which will takes [people](https://www.mindstick.com/news/2295/more-people-need-to-monitor-this-crucial-metric-for-heart-health) to the paid version in the [app store](https://www.mindstick.com/news/2221/apple-s-new-ad-tax-on-the-app-store-is-a-clear-jab-at-meta). I tried to use a [standard](https://www.mindstick.com/articles/23223/naming-convention-or-coding-standard) link, like this:(its an example)\
http://itunes.apple.com/paidApp/TKStore.tk/ta/viewSoftware?id=1001010&gs=4\
I will open the [safari](https://www.mindstick.com/forum/453/font-weight-bold-property-not-support-in-ie-opera-safari-chrome) first and after app store. I have used other [apps](https://www.mindstick.com/articles/12842/6-apps-for-writers-that-are-actually-worth-downloading) that open the app store directly, so I know it is possible.\
Can any one tell me the, what is the URL Scheme for the app store?

## Replies

### Reply by Anonymous User

If you want to create a direct link without redirection of App-[Store](https://www.mindstick.com/articles/13125/tips-to-increase-sales-of-your-woocommerce-store): follow this:\
Copy iTunes link, for example: http://itunes.apple.com/linkmaker/\
now, replace the http:// with itms-apps://\
now you can open the link using UIApplication, for ex:

```
[[UIApplication sharedApplication] openURL:url];
```

and the one important thing is that the link will work only on actual device, it will not work on simulator.\
Be careful, those links only works on actual devices, not in simulator.


---

Original Source: https://www.mindstick.com/forum/33748/linking-app-store-link-on-app-in-ios

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
