美文网首页
swift 用关键字作为方法名称

swift 用关键字作为方法名称

作者: 王家薪 | 来源:发表于2017-08-07 00:55 被阅读6次

在 swift 中可以使用系统关键字来作为方法名称,只需要给关键字加上单引号即可

    private func setUI() -> Void{
        let button = UIButton(type: .custom)
        button.frame = self.view.bounds
        button.setTitle("回去", for: .normal)
        button.addTarget(self, action: #selector(`return`), for:.touchUpInside)
        self.view.addSubview(button)
    }
   // 看这个方法的名字
    @objc func `return`() -> Void{
        print("低调")
    }

相关文章

  • swift 用关键字作为方法名称

    在 swift 中可以使用系统关键字来作为方法名称,只需要给关键字加上单引号即可

  • swift中数组操作

    数组的声明 可变关键字用var,不可变关键字用let,默认用一对[]表示 swift数组拼接操作 swift的值拷...

  • swift之mutating关键字

    部分参考:swift之mutating关键字 swift中在structures和enumerations的方法中...

  • python-(类)

    创建一个类 创建一个类用class关键字 类的名称首字母大写 默认继承object类 类里面的方法用def关键字 ...

  • java synchronized 同步机制解析

    在Java 5以前,是用synchronized关键字来实现锁的功能。 synchronized关键字可以作为方法...

  • swift 协议 可选方法

    在 swift 如何定义可选方法? 在 OC 中有 @optional 关键字,但在 swift 中使用 opti...

  • 函数

    函数 swift里的函数就是OC里的方法 格式:func:关键字,多个参数之间用,分隔,也可以没有参数(->)指向...

  • swift语法--11getter&setter方法

    swift语法--11getter&setter方法 swift中的setter方法 但在Swift开发中,我们用...

  • Swift mutating

    Swift 的 mutating 关键字修饰方法是为了能在该方法中修改 struct 或是 enum 的变量

  • Xcode 11 Swift 调用OC文件类

    1、首先你的导入 import "{项目名}-Swift.h" 2、将你需要调用的swift方法添加关键字@obj...

网友评论

      本文标题:swift 用关键字作为方法名称

      本文链接:https://www.haomeiwen.com/subject/kmfolxtx.html