I want to change width & height
, etc. of the button of UIActionSheet
UIActionSheet *sheet = [[UIActionSheet alloc] initWithTitle:nil delegate:self cancelButtonTitle:nil destructiveButtonTitle:nil otherButtonTitles:@**"Done"**,nil];
I want to change width & height
, etc. of the button of UIActionSheet
UIActionSheet *sheet = [[UIActionSheet alloc] initWithTitle:nil delegate:self cancelButtonTitle:nil destructiveButtonTitle:nil otherButtonTitles:@**"Done"**,nil];
You can create your own actionsheet analog.
I would suggest against doing this. The button sizes and shapes in a UIActionSheet are designed the way they are for accessibility reasons. They are also consistent across all applications on the platform, so users are familiar with them. From the iPhone Human Interface Guidelines:
If you change these sizes, not only might you make your application less usable, but that may violate Apple's Human Interface Guidelines, leading to a rejection of your application when submitted.