本文主要是介绍如何发大按钮的点击热区(可触范围),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
Apple的iOS人机交互设计指南中指出,按钮点击热区应不小于44x44pt,否则这个按钮就会让用户觉得“很难用”,因为明明点击上去了,却没有任何响应
为了发大按钮的可触范围,需要重写UIButton的- (BOOL)pointInside:(CGPoint)point withEvent:(UIEvent *)event;方法,改变按钮的可触范围。
1.使按钮的可触范围改变至44*44
- (BOOL)pointInside:(CGPoint)point withEvent:(UIEvent *)event{
CGRect bounds = self.bounds;
CGFloat width = 44.0f - bounds.size.width;
CGFloat height = 44.0f - bounds.size.height;
bounds = CGRectInset(bounds, - 0.5 * width, - 0.5 * height);//改变bounds的范围
return CGRectContainsPoint(bounds, point);//如果point 在 bounds 内,返回YES,否则返回NO
}
这篇关于如何发大按钮的点击热区(可触范围)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!