metatext/Views/LoadMoreCell.swift

12 lines
285 B
Swift
Raw Normal View History

// Copyright © 2020 Metabolist. All rights reserved.
import UIKit
class LoadMoreCell: UITableViewCell {
2020-10-02 07:41:30 +00:00
override func layoutSubviews() {
super.layoutSubviews()
2020-10-02 07:41:30 +00:00
separatorInset.left = UIDevice.current.userInterfaceIdiom == .phone ? 0 : layoutMargins.left
}
}