Я думаю, что было бы лучше добавить стандартную кнопку действия, возможно, с заголовком «Дополнительная информация», которая позаботится об открытии URL, но вы можете взглянуть на этот тот же вопрос .
UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"" message:@"Welcome to AlertView" preferredStyle:UIAlertControllerStyleAlert];
UIAlertAction *linkAction = [UIAlertAction actionWithTitle:@"More info" style:UIAlertActionStyleDefault handler:^(UIAlertAction * action) {
[[UIApplication sharedApplication] openURL:[NSURL URLWithString: yourUrl]];
}];
UIAlertAction *defaultAction = [UIAlertAction actionWithTitle:@"Ok" style:UIAlertActionStyleDefault handler:^(UIAlertAction * action) {
// OK button tappped.
[self dismissViewControllerAnimated:YES completion:^{ }];
}];
[alert addAction:linkAction];
[alert addAction:defaultAction];
[self presentViewController:alert animated:true completion:nil];