Hello, I am new to Xcode and programming in iOS. I am having some troubles in my actionsheet and my alert, have to press twice to work. Its also says this: "Presenting actionsheet clipped by its superview". Some controls might not respond to touches. On iPhone try -[UIActionSheet showFromTabBar:] or -[UIActionSheet showFromToolbar:] instead of -[UIActionSheet showInView:].
{
UIActionSheet *actionSheet = [[UIActionSheet alloc]
initWithTitle:@"¿?" delegate:self cancelButtonTitle:@"No" destructiveButtonTitle:@"Send" otherButtonTitles:nil];
[actionSheet showInView:self.view];
}
any help will be appreciated thanks!