How to customise the Button on UIActionSheet?

2019-02-27 03:04发布

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];

2条回答
做自己的国王
2楼-- · 2019-02-27 03:40

You can create your own actionsheet analog.

查看更多
淡お忘
3楼-- · 2019-02-27 03:42

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:

Because users are accustomed to the appearance and behavior of these views, it’s important to use them consistently and correctly in your application.

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.

查看更多
登录 后发表回答