iVersion icon indicating copy to clipboard operation
iVersion copied to clipboard

Display App Store releaseNotes when showOnFirstLaunch is set to true

Open karlbecker opened this issue 10 years ago • 2 comments

The library is generally working great, but I seem to be hitting a problem: when the user launches the latest version for the first time, it will show the releaseNotes only when specified via localVersionsPlistPath, and not from the App Store's API response.

I have set

[iVersion sharedInstance].showOnFirstLaunch = YES;

in the AppDelegate's

    + (void)initialize;

When the version is the same, it shows no alert on first launch.

However, when I add this line (and the associated versions.plist to my bundle):

[iVersion sharedInstance].localVersionsPlistPath = @"versions.plist";

then it shows the message specified locally, as I would expect.

I do not want to have to remember to update my app bundle each submission just to show this reminder when a user upgrades.

Is this a bug in the library? Or am I neglecting to do something?

Thanks!

  • Karl

karlbecker avatar Sep 26 '13 02:09 karlbecker