http://blog.sina.com.cn/s/blog_b4df5c330102vd06.html
- (void)checkUpdate
{
if (flag) {
[[Harpy sharedInstance] setAppID:@"1111111"];
[[Harpy sharedInstance] setPresentingViewController:self.window.rootViewController];
[[Harpy sharedInstance] setAlertType:HarpyAlertTypeSkip];
[[Harpy sharedInstance] setAppName:NSLocalString(@"CFBundleDisplayName")];
[[Harpy sharedInstance] checkVersion];
}
// NSLog(@"ddd");
}
1.
#### CocoaPods Installation
```
pod 'Harpy'
{
}
5.
- (void)applicationDidBecomeActi
{
[[Harpy sharedInstance] checkVersionDaily];每天更新
[[Harpy sharedInstance] checkVersionWeekly];每周更新
}
6.
- (void)applicationWillEnterFore
{
[[Harpy sharedInstance] checkVersion];
}
7.宏定义选取版本
//app版本升级获取对比
#define APP_VERSION_NUM [[[NSBundle mainBundle] infoDictionary] objectForKey:@"CFBundleShortVersionStri
//获取版本名字
#define APP_NAME_DISPLY [[[NSBundle mainBundle]infoDictionary] objectForKey:(NSString *)kCFBundleNameKey]
#define APP_ID @"909253"
#define APP_COUNTRY_CODE @"086"
9.把如下东西添加上去就可以了,注意版本号形式是:1.0.0。