2018年2月9日

iOS点击按钮第二次不能旋转View

摘要: 原因: 用CGAffineTransformMakeRotation,每次旋转都要在之前最后的角度基础之上再转才有效果。 阅读全文

posted @ 2018-02-09 16:33 玉思盈蝶 阅读(209) 评论(0) 推荐(0) 编辑

iOS扩大按钮的点击范围

摘要: // 重写此方法将按钮的点击范围扩大 - (BOOL)pointInside:(CGPoint)point withEvent:(UIEvent *)event { CGRect bounds = self.bounds; // 扩大点击区域 bounds = CGRectInset(bounds, -20, -20); // 若点击的点在新的... 阅读全文

posted @ 2018-02-09 11:26 玉思盈蝶 阅读(233) 评论(0) 推荐(0) 编辑

导航