在Swift中将按钮操作发送到自定义类

时间:2015-07-07 06:56:22

标签: ios swift

您好我无法使此代码正常工作。我收到此错误“无法识别的选择器发送到实例”。

我试图将@Objc放在方法签名的前面,但仍然无法正常工作

import Foundation
import UIKit

public class BasePopup: NSObject{

     var backgroundView:UIView!

     public init() {
         super.init()

         ....
          //Previous elements
         ....

         btnClose.addTarget(self, 
                            action: "hidePopup:",
                            forControlEvents: .TouchUpInside)
     }

     func hidePopup(sender:AnyObject){
        backgroundView.hidden = true
     }
}

0 个答案:

没有答案