SkeletonTableView

@MainActor
open class SkeletonTableView : SkeletonLayout, UITableViewDataSource, UITableViewDelegate

骨架屏表格视图,可生成表格骨架屏

  • 表格视图,默认不可滚动

    Declaration

    Swift

    @MainActor
    open lazy var tableView: UITableView { get set }
  • 表格视图代理,快速生成表格

    Declaration

    Swift

    @MainActor
    open lazy var tableDelegate: TableViewDelegate { get set }
  • 表格头视图

    Declaration

    Swift

    @MainActor
    open var tableHeaderView: UIView? { get set }
  • 表格尾视图

    Declaration

    Swift

    @MainActor
    open var tableFooterView: UIView? { get set }
  • Undocumented

    Declaration

    Swift

    @MainActor
    public init(style: UITableView.Style)
  • Declaration

    Swift

    @MainActor
    override public init(layoutView: UIView?)
  • Undocumented

    Declaration

    Swift

    @MainActor
    override public init(frame: CGRect)
  • Undocumented

    Declaration

    Swift

    @MainActor
    public required init?(coder: NSCoder)
  • Undocumented

    Declaration

    Swift

    @MainActor
    override open func layoutSubviews()

UITableView

  • Undocumented

    Declaration

    Swift

    @MainActor
    open func numberOfSections(in tableView: UITableView) -> Int
  • Undocumented

    Declaration

    Swift

    @MainActor
    open func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int
  • Undocumented

    Declaration

    Swift

    @MainActor
    open func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell
  • Undocumented

    Declaration

    Swift

    @MainActor
    open func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat
  • Undocumented

    Declaration

    Swift

    @MainActor
    open func tableView(_ tableView: UITableView, viewForHeaderInSection section: Int) -> UIView?
  • Undocumented

    Declaration

    Swift

    @MainActor
    open func tableView(_ tableView: UITableView, heightForHeaderInSection section: Int) -> CGFloat
  • Undocumented

    Declaration

    Swift

    @MainActor
    open func tableView(_ tableView: UITableView, viewForFooterInSection section: Int) -> UIView?
  • Undocumented

    Declaration

    Swift

    @MainActor
    open func tableView(_ tableView: UITableView, heightForFooterInSection section: Int) -> CGFloat