提示用户去AppStore给评价,一般会放在首页,弹出alertView,给出几个选项,让用户选择,然后作出对应的操作。
选项一般会是三个:给个好评,我要提意见(吐槽),残忍拒绝(下次再说)。
好评就是直接跳转AppStore,提意见可以跳转AppStore,也可以在app内不给个反馈通道(推荐),拒绝(可以给个频率让它再次出现)。
一:首先文件头要引入UIAlertViewDelegate
@interface ZTIndexViewController ()<UIAlertViewDelegate>{
UIAlertView *alertViewTest;
}
二:在viewDidAppear中进行判断是否弹出视图
判断什么时候弹出,多久弹出一次,整理一份逻辑:
1.一天只能弹出一次(0-24点算一天)
2.用户点击给好评后,不再弹出该对话框
3.用户点击不好用,我要提意见,7天内不再弹出
4.用户点击残忍的拒绝后,7天内每过1天都会判断弹出,7-30天不会弹出,30天后再弹出此对话框
5.软件升级后规则重新计算
-(void)viewDidAppear:(BOOL)animated{
//用户好评系统
//当前版本号
NSDictionary *infoDictionary = [[NSBundle mainBundle] infoDictionary];
float appVersion = [[infoDictionary objectForKey:@"CFBundleShortVersionString"] floatValue];
//userDefaults里的天数
NSUserDefaults *userDefaults = [NSUserDefaults standardUserDefaults];
int udtheDays = [[userDefaults objectForKey:@"theDays"] intValue];
//userDefaults里的版本号
float udAppVersion = [[userDefaults objectForKey:@"appVersion"] intValue];
//userDefaults里用户上次的选项
int udUserChoose = [[userDefaults objectForKey:@"userOptChoose"] intValue];
//时间戳的天数
NSTimeInterval interval = [[NSDate date] timeIntervalSince1970];
int daySeconds = 24 * 60 * 60;
NSInteger theDays = interval / daySeconds;
//版本升级之后的处理,全部规则清空,开始弹窗
if (udAppVersion && appVersion>udAppVersion) {
[userDefaults removeObjectForKey:@"theDays"];
[userDefaults removeObjectForKey:@"appVersion"];
[userDefaults removeObjectForKey:@"userOptChoose"];
[self alertUserCommentView];
}
//1,从来没弹出过的
//2,用户选择不好用我要提意见,7天之后再弹出
//3,用户选择残忍的拒绝后,7天内,每过1天会弹一次
//4,用户选择残忍的拒绝的30天后,会弹出
else if (!udUserChoose ||
(udUserChoose==2 && theDays-udtheDays>7) ||
(udUserChoose>=3 && theDays-udtheDays<=7 && theDays-udtheDays>udUserChoose-3) ||
(udUserChoose>=3 && theDays-udtheDays>30))
{
[self alertUserCommentView];
}
}
-(void)alertUserCommentView{
alertViewTest = [[UIAlertView alloc] initWithTitle:@"请给个好评吧" message:@"有了大家的支持XXX才能更加好的为大家服务,提供更加优质的,更加便宜的产品给到大家,当然您也可以直接反馈问题给到我们" delegate:self cancelButtonTitle:@"残忍的拒绝" otherButtonTitles:@"给个好评",@"不好用,我要提意见", nil];
[alertViewTest show];
}
-(void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex{
NSLog(@"%li",buttonIndex);
NSUserDefaults *userDefaults = [NSUserDefaults standardUserDefaults];
//当前时间戳的天数
NSTimeInterval interval = [[NSDate date] timeIntervalSince1970];
int daySeconds = 24 * 60 * 60;
NSInteger theDays = interval / daySeconds;
//当前版本号
NSDictionary *infoDictionary = [[NSBundle mainBundle] infoDictionary];
float appVersion = [[infoDictionary objectForKey:@"CFBundleShortVersionString"] floatValue];
//userDefaults里版本号
float udAppVersion = [[userDefaults objectForKey:@"appVersion"] intValue];
//userDefaults里用户选择项目
int udUserChoose = [[userDefaults objectForKey:@"userOptChoose"] intValue];
//userDefaults里用户天数
int udtheDays = [[userDefaults objectForKey:@"theDays"] intValue];
//当前版本比userDefaults里版本号高
if (appVersion>udAppVersion) {
[userDefaults setObject:[NSString stringWithFormat:@"%f",appVersion] forKey:@"appVersion"];
}
switch (buttonIndex) {
case 1: //好评
[userDefaults setObject:@"1" forKey:@"userOptChoose"];
[userDefaults setObject:[NSString stringWithFormat:@"%ld",theDays] forKey:@"theDays"];
break;
case 2: //不好用,我要提意见
[userDefaults setObject:@"2" forKey:@"userOptChoose"];
[userDefaults setObject:[NSString stringWithFormat:@"%ld",theDays] forKey:@"theDays"];
break;
case 0: //残忍的拒绝
if (udUserChoose<=3 || theDays-[[userDefaults objectForKey:@"theDays"] intValue]>30) {
[userDefaults setObject:@"3" forKey:@"userOptChoose"];
[userDefaults setObject:[NSString stringWithFormat:@"%ld",theDays] forKey:@"theDays"];
}else{
[userDefaults setObject:[NSString stringWithFormat:@"%ld",theDays-udtheDays+3] forKey:@"userOptChoose"];
}
break;
default:
break;
}
NSLog(@"%@",[userDefaults objectForKey:@"appVersion"]);
NSLog(@"%@",[userDefaults objectForKey:@"userOptChoose"]);
NSLog(@"%@",[userDefaults objectForKey:@"theDays"]);
}
三:对用户不同选择进行不同处理
在switch (buttonIndex) 的三个选项结果中进行处理,这里的代码没有进行处理,下次会补充相关代码
1:给个好评->AppStore
2:不好用->可以跳转AppStore,会增加评论数,但是应该会降低评分,也可以在app内部给予意见反馈页面,比较稳妥
3:残忍拒绝->不用跳转,一般保存本地就可以