mirror of
https://github.com/Instagram/IGListKit
synced 2026-05-06 15:08:50 +00:00
Summary: ## Changes in this pull request ### Checklist - [x] All tests pass. Demo project builds and runs. - [x] I added tests, an experiment, or detailed why my change isn't tested. - [x] I added an entry to the `CHANGELOG.md` for any breaking changes, enhancements, or bug fixes. - [x] I have reviewed the [contributing guide](https://github.com/Instagram/IGListKit/blob/master/.github/CONTRIBUTING.md) Pull Request resolved: https://github.com/Instagram/IGListKit/pull/1453 Reviewed By: lorixx Differential Revision: D23836038 Pulled By: joetam fbshipit-source-id: 8245415992a5b1ed49f67ebfcf9f85a2745a8042
57 lines
1.5 KiB
Swift
57 lines
1.5 KiB
Swift
/*
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
import UIKit
|
|
|
|
protocol RemoveCellDelegate: class {
|
|
func removeCellDidTapButton(_ cell: RemoveCell)
|
|
}
|
|
|
|
final class RemoveCell: UICollectionViewCell {
|
|
|
|
weak var delegate: RemoveCellDelegate?
|
|
|
|
private lazy var label: UILabel = {
|
|
let label = UILabel()
|
|
label.backgroundColor = .clear
|
|
self.contentView.addSubview(label)
|
|
return label
|
|
}()
|
|
|
|
fileprivate lazy var button: UIButton = {
|
|
let button = UIButton(type: .custom)
|
|
button.setTitle("Remove", for: UIControl.State())
|
|
button.setTitleColor(.blue, for: UIControl.State())
|
|
button.backgroundColor = .clear
|
|
button.addTarget(self, action: #selector(RemoveCell.onButton(_:)), for: .touchUpInside)
|
|
self.contentView.addSubview(button)
|
|
return button
|
|
}()
|
|
|
|
var text: String? {
|
|
get {
|
|
return label.text
|
|
}
|
|
set {
|
|
label.text = newValue
|
|
}
|
|
}
|
|
|
|
override func layoutSubviews() {
|
|
super.layoutSubviews()
|
|
contentView.backgroundColor = UIColor.background
|
|
let bounds = contentView.bounds
|
|
let divide = bounds.divided(atDistance: 100, from: .maxXEdge)
|
|
label.frame = divide.slice.insetBy(dx: 15, dy: 0)
|
|
button.frame = divide.remainder
|
|
}
|
|
|
|
@objc func onButton(_ button: UIButton) {
|
|
delegate?.removeCellDidTapButton(self)
|
|
}
|
|
|
|
}
|