我从应用商店下载了一个应用程序,发现安装并打开该应用程序后,我收到一个 UIAlertView,建议我下载另一个应用程序。
我怎样才能做到这一点?是否有任何现有的代码可以指导我?
似乎是一个简单的功能,但我想集成它。请查看附件
这是我编辑的代码,但“你好”按钮不会链接到任何地方。我做错了什么?
UIAlertView *message = [[UIAlertView alloc] initWithTitle:@"Hello World!"
message:@"This is your first UIAlertview message."
delegate:nil
cancelButtonTitle:@"OK"
otherButtonTitles:@"Hello", nil];
[message show];
- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex
{
NSString *title = [alertView buttonTitleAtIndex:buttonIndex];
if([title isEqualToString:@"Hello"])
{
[[UIApplication sharedApplication] openURL:[NSURL URLWithString: @"https://itunes.apple.com/gb/app/islam/id667021108?mt=8&affId=1930871&ign-mpt=uo%3D4"]];
}
}