mirror of
https://github.com/metabolist/metatext
synced 2025-01-22 23:41:38 +01:00
12 lines
285 B
Swift
12 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
|
|
}
|
|
}
|