Open a custom page and not appstore
Closed this issue · 3 comments
I can't get it to open a custom URL insted of App Store. How can I achieve this ?
I made my own little update page witch I would like the user to se when they click update now.
Just set [iVersion sharedInstance].updateURL to whatever the URL is for your update page.
Thanks, I did include that line. Do I need to exclude some of the basic lines along with that? I used your iPhone example as a starting point. My iPhones just keeps reporting that it cannot connect to iTunes Store ?.
This is how I try to implement it:
- (void)initialize
{
[iVersion sharedInstance].remoteVersionsPlistURL = @"http://www.someurl.com/versions.plist";
[iVersion sharedInstance].updateURL = @"http://app.someurl.com/appPage/";
}On 19/08/2013, at 17.25, Nick Lockwood notifications@github.com wrote:
Just set [iVersion sharedInstance].updateURL to whatever the URL is for your update page.
—
Reply to this email directly or view it on GitHub.
iVersion will always check the App Store, but it should work anyway even if it doesn't find your app on there. What does it say in the logs? (also, make sure you're using the latest version).