I want to create action sheet with two buttons, but i want the buttons to have thumbnail icons, is that possible? any other solutions? maybe there is a way to customize the action sheet buttons.. like to design them separately?
this is my current action sheet method:
- (void)tapResponder {
NSLog(@"Tap!");
UIActionSheet *actionSheet = [[UIActionSheet alloc] initWithTitle:@"this is a title"
delegate:self
cancelButtonTitle:@"Cancel"
destructiveButtonTitle:nil
otherButtonTitles:@"one", @"two", nil];
[actionSheet showInView:self.view];
}
but i really like to stay with ios design so please give me a cool solution :))
thankssss!