So in my view I have a copy url function which fires the alert view. Everything works as it should, but when I press ok and try to scroll to top by the status bar, it won't work. Before the alert, all is fine.
Here is how I call it.
SIAlertView *alertView = [[SIAlertView alloc] initWithTitle:@"URL successfully copied to the clipboard." andMessage:nil];
[alertView addButtonWithTitle:@"OK"
type:SIAlertViewButtonTypeCancel
handler:^(SIAlertView *alert) {
NSLog(@"OK Clicked");
}];
alertView.transitionStyle = SIAlertViewTransitionStyleDropDown;
[alertView show];
[alertView release];
So in my view I have a copy url function which fires the alert view. Everything works as it should, but when I press ok and try to scroll to top by the status bar, it won't work. Before the alert, all is fine.
Here is how I call it.