mirror of
https://github.com/metabolist/metatext.git
synced 2024-11-26 02:01:00 +00:00
11 lines
285 B
Swift
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
|
|
}
|
|
}
|