metatext/Views/LoadMoreCell.swift
Justin Mazzocchi 33f026f9cc
Load more WIP
2020-10-02 00:41:30 -07:00

11 lines
285 B
Swift

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