swift addTarget 传参


swift 无法像js那样直接传入参数. 需要借助tag传参:

ListBtn.addTarget(self, action: "Detail:", forControlEvents: .TouchUpInside)

函数名中增加 ":" 字符

咱函数中通过传入这个元素来实现传值:

func Detail(sender:UIButton){
        var DeailVc = DetailViewController()
        DeailVc.Id = sender.tag
        self.presentViewController(DeailVc, animated: true, completion: nil)
    }

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM