How to customise the Button on UIActionSheet?

泪湿孤枕 提交于 2019-12-02 01:58:58

问题


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

回答1:


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.




回答2:


You can create your own actionsheet analog.



来源:https://stackoverflow.com/questions/1858318/how-to-customise-the-button-on-uiactionsheet

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!