mirror of
https://github.com/confirmedcode/Lockdown-iOS.git
synced 2025-12-21 12:14:02 +01:00
25 lines
658 B
Swift
25 lines
658 B
Swift
//
|
|
// BlockListAddCell.swift
|
|
// Lockdown
|
|
//
|
|
// Copyright © 2019 Confirmed Inc. All rights reserved.
|
|
//
|
|
|
|
import UIKit
|
|
|
|
class BlockListAddCell: UITableViewCell {
|
|
|
|
override func layoutSubviews() {
|
|
super.layoutSubviews()
|
|
|
|
// Add line to bottom of Add Domain Text Field
|
|
let bottomLine = CALayer()
|
|
bottomLine.frame = CGRect(x: 0, y: addBlockListDomain.frame.height - 2, width: addBlockListDomain.frame.width, height: 2)
|
|
bottomLine.backgroundColor = UIColor.tunnelsBlue.cgColor
|
|
addBlockListDomain.layer.addSublayer(bottomLine)
|
|
}
|
|
|
|
@IBOutlet weak var addBlockListDomain: UITextField!
|
|
|
|
}
|