Я довольно новичок в кодировании iPhone и хотел узнать, может ли кто-нибудь мне помочь.
Подготовьте код, чтобы при загрузке приложения UIAletView загружал и предлагал пользователю просмотреть / оценить приложение, но у меня есть кнопка под названием «Никогда не оценивать»
Мне потребовалась помощь, чтобы узнать, как кодировать кнопку «никогда не оценивать», чтобы при нажатии приложения UI Alert не загружалось при каждой загрузке приложения.
Это мой код:
(void)viewDidLoad {
UIAlertView *alert;
alert = [[UIAlertView alloc] initWithTitle:@"Rate My Appication" message:@" Please Rate my Application and check out my other Apps"
delegate: self
cancelButtonTitle:@" Cancel "
otherButtonTitles: @" Rate Now ", @"Check Other Apps", @" Never Rate ", nil];
[alert show];
[alert release];
}
(bool)alertView:(UIAlertView *)actionSheet clickedButtonAtIndex:(NSInteger)buttonIndex {
// Never Review Button
if (buttonIndex == 3)
{
}
// Review Button
else if (buttonIndex == 1)
{
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"http://itunes.apple.com/gb/app/calculator/id389197581?mt=8"]];
}
// Other Apps Button
else if (buttonIndex == 2)
{
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"http://itunes.com/apps/2headsolutions"]];
}
}