【Swift 2.1】为 UIView 添加点击事件和点击效果
一、为 UIView 添加点击事件
extension UIView { func addOnClickListener(target: AnyObject, action: Selector) { let gr = UITapGestureRecognizer(target: target, action: action) gr.numberOfTapsRequired = 1 userInteractionEnabled = true addGestureRecognizer(gr) } }
二、为 UIView 添加点击效果
class UIViewEffect : UIView { override func touchesBegan(touches: Set<UITouch>, withEvent event: UIEvent?) { backgroundColor = UIColor.groupTableViewBackgroundColor() } override func touchesCancelled(touches: Set<UITouch>?, withEvent event: UIEvent?) { UIView.animateWithDuration(0.15, animations: { () -> Void in self.backgroundColor = UIColor.clearColor() }) } override func touchesEnded(touches: Set<UITouch>, withEvent event: UIEvent?) { UIView.animateWithDuration(0.15, animations: { () -> Void in self.backgroundColor = UIColor.clearColor() }) } }
这里大家可以换成自己的点击效果,如果是 UIImageView 可以换成点击变更透明度。
本文转自博客园农民伯伯的博客,原文链接:【Swift 2.1】为 UIView 添加点击事件和点击效果,如需转载请自行联系原博主。

低调大师中文资讯倾力打造互联网数据资讯、行业资源、电子商务、移动互联网、网络营销平台。
持续更新报道IT业界、互联网、市场资讯、驱动更新,是最及时权威的产业资讯及硬件资讯报道平台。
转载内容版权归作者及来源网站所有,本站原创内容转载请注明来源。
-
上一篇
【Swift】UITableViewCell 中 TTTAttributedLabel 超链接无法点击的问题
代码: 在 UITableViewCell 中 1 2 3 4 5 6 7 8 9 10 11 override func gestureRecognizer ( gestureRecognizer : UIGestureRecognizer , shouldReceiveTouch touch : UITouch ) - > Bool { if let label = touch . view as ? TTTAttributedLabel , let link = label . linkAtPoint ( touch . locationInView ( label ))?. result { if let url = link . URL where ( link . numberOfRanges ?? 0 ) > 0 { if UIApplication . sharedApplication (). canOpenURL ( url ) { UIApplication . sharedApplication (). openURL ( url ) } ...
-
下一篇
【Swift】 应用内显示 AppStore 某个应用的详情
一般网上的文章的代码: func openAppStore(url: String){ if let number = url.rangeOfString("[0-9]{9}", options: NSStringCompareOptions.RegularExpressionSearch) { let appId = url.substringWithRange(number) let productView = SKStoreProductViewController() productView.delegate = self productView.loadProductWithParameters([SKStoreProductParameterITunesItemIdentifier : appId], completionBlock: { [weak self](result: Bool, error: NSError?) -> Void in if result { self?.presentViewController(productView, animated...
相关文章
文章评论
共有0条评论来说两句吧...