So I’ve read this post
But it doesn’t seem to deal with the issue of making the background NOT tint to a semi-transparent. I want the content behind the menu with buttons to be clearly visible. Is this even possible?
This is what I have currently
WPSActionSheet *actionSheet = [[WPSActionSheet alloc] initWithCompletion:completion];
[actionSheet setTitle:@""];
[actionSheet addButtonWithTitle:@"Take Photo"];
[actionSheet addButtonWithTitle:@"Choose from Library"];
[actionSheet addButtonWithTitle:@"Skip This Step"];
[actionSheet setCancelButtonIndex:2];
[actionSheet showInView:[self view]];
which shows this

UIActionSheetwill always show the “tinted background”. There is no way around this. You can however create your own version of theUIActionSheetusing aUIView.