本文主要是介绍iOS扩大按钮UIButton的点击范围,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
- (BOOL)pointInside:(CGPoint)point withEvent:(UIEvent*)event{CGRectbounds =self.bounds;CGFloatwidthDelta =44.0- bounds.size.width;CGFloatheightDelta =44.0- bounds.size.height;bounds =CGRectInset(bounds, -0.5* widthDelta, -0.5* heightDelta);//注意这里是负数,扩大了之前的bounds的范围returnCGRectContainsPoint(bounds, point);}
这篇关于iOS扩大按钮UIButton的点击范围的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!