前言
一開始還以為代碼寫的有問題,點擊事件裡面有比較耗時卡主線程的代碼,逐一刪減代碼發現並不是這麼回事。
正文
和參考文章裡說的情況不完全相同,UIButton 並沒有放在 UIScrollView 或 UITableView 上,但是 ViewController 是支持滑動返回的。
——————————————————華麗的分割線,搜索猜測解題中——————————————————
解決辦法:也沒什麼好辦法,換成 ImageView 加 UITapGestureRecognizer 吧,另外奉上點擊效果代碼 :)
class UIImageViewEffect : UIImageView { var effectAlpha: CGFloat = 0.5 override func touchesBegan(touches: Set<UITouch>, withEvent event: UIEvent?) { alpha = effectAlpha } override func touchesCancelled(touches: Set<UITouch>?, withEvent event: UIEvent?) { self.alpha = 1 } override func touchesEnded(touches: Set<UITouch>, withEvent event: UIEvent?) { self.alpha = 1 } }
以上就是解決IOS UIButton 出現卡頓的問題,有需要的朋友參考下。