Xcode iOS7 Custom UIActionSheet (Blocks)

728 Views Asked by At

I have been working on custom UIAlertViews and UIActionSheets for too long, so I would really appreciate any help.

I am trying to achieve an UIActionSheet as the UIAlertView shown in the picture below. How am I supposed to do that? I tried to use a UIView, which comes up halfway but that did not fit my expectations.

The colors shall be maintained (some kind of dark red or whatever it is) and (if possible) the block-style as well.

Thanks for your help, I am really desperate :-(

Do please understand that my english is not that good...

enter image description here

1

There are 1 best solutions below

4
On

You need to do all for Custom things, For Ex : Just for a UIbutton

UIAlertView *av = [[UIAlertView alloc] init];
[av addButtonWithTitle:@""];
UIButton *yesButton = [av.subviews lastObject];
[yesButton setHidden:YES];

UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom];
[av addSubview:button];
[av show];

[button setImage:[UIImage imageNamed:@"test.png"] forState:UIControlStateNormal];
[button addTarget:av action:@selector(someAction:) forControlEvents:[yesButton allControlEvents]];
[button setFrame:yesButton.frame];