Detect new version from App Store, and notify user with local notifications.
Detect new version from App Store, and notify user with local notifications.
@implementation AppDelegate
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
[[Pigeon sharedInstance] enableLocalNotification];
[[Pigeon sharedInstance] startWithAppleId:@"584296227"];
return YES;
}
- (void)application:(UIApplication *)application didReceiveLocalNotification:(UILocalNotification *)notification
{
[[Pigeon sharedInstance] openInAppStore];
}
@end
You can also customize Pigeon as you wish. REMEMBER to set the customizable properties before you call startWithAppleId:
;
Manage the latestVersion
yourself, so Pigeon
won’t fetch it from App Store.
@property (strong, nonatomic) NSString *latestVersion;
The message of local notification.
@property (strong, nonatomic) NSString *updateMessage;
The country code ( @“us”, @“ru” for example ). You should set this code, if your application is not available in all countries.
@property (strong, nonatomic) NSString *countyCode;
The notify interval. Default values is one day.
@property (assign, nonatomic) NSTimeInterval notifyInterval;
Pigeon
will post a notification when finding a new version. You can observe it and notify users in the way you prefer, a UIAlertView for example.
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(showNewVersionAlertView) name:PigeonDidFindNewVersionNotification object:nil];
If you’re building your applications using Pigeon
, please let me know! (add your application name & App Store link here and pull reuqest this README.
The MIT License (MIT)
Copyright © 2013 LIGHT [email protected]
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the “Software”), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
the Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.