我希望能够像UIButton一样调用addTarget.
我知道我可以继承UIControl并调用它
self.sendActionsForControlEvents(UIControlEvents.TouchUpInside);
但我想在UIView上做,因为我在XIB文件上设计它.
Go to Interface builder of your class Select the view u want to add action open IDENTITY INSPECTOR,change class from UIView to ‘UIControl’.
现在你可以在这个视图中添加任何IBAction方法.
它的工作就像魅力.快乐的编码.希望它可能有所帮助
更新
its working in xCode 9.3 and swift 4+