美文网首页
Swift运行时: 获取类的属性列表

Swift运行时: 获取类的属性列表

作者: Michael_NO1 | 来源:发表于2016-08-05 18:10 被阅读15次

    ```

    class func propertyList() -> [String] {    

            var count: UInt32 = 0    

            let list = class_copyPropertyList(self,&count)    

           for i in 0..<Int(count) {

                   let pty = list?[i]

                   let  cName = property_getName(pty!)

                   let name = String(utf8String: cName!)

           }

            free(list)

            return []

    }

    相关文章

      网友评论

          本文标题:Swift运行时: 获取类的属性列表

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