Hi, I can't seem to figure out why this UIAlertview isn't working. The alert pops up, and I have the code which allows the buttons to have actions, but none of the actions are working. Here is the code:
Code:
- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex {
// the user clicked confirm
if (buttonIndex == 1)
{
[myWebView reload];
}
}