TreeNode
public class TreeNode : NSObject
节点实体
-
名称,用于显示
Declaration
Swift
public var name: String -
搜索名称,用于多条件搜索
Declaration
Swift
public var filterName: [String] -
ID
Declaration
Swift
public var ID: String -
parentID
Declaration
Swift
public var parentID: String -
排序号
Declaration
Swift
public var sordCode: Int -
数据类型
Declaration
Swift
public var type: String -
是否顶级父节点
Declaration
Swift
public var isTop: Bool -
是否叶子节点
Declaration
Swift
public var isLeaf: Bool -
原始数据
Declaration
Swift
public var data: Any -
Undocumented
Declaration
Swift
public init(name: String, filterName: [String], ID: String, parentID: String, sordCode: Int, type: String, isTop: Bool, isLeaf: Bool, data: Any)
View on GitHub
TreeNode Class Reference