Bluefruit-Playground/BluefruitPlayground/Utils/PanelInsetView.swift
2020-02-19 10:30:38 +01:00

19 lines
417 B
Swift

//
// PanelInsetView.swift
// BluefruitPlayground
//
// Created by Antonio García on 27/10/2019.
// Copyright © 2019 Adafruit. All rights reserved.
//
import UIKit
class PanelInsetView: UIView {
override func awakeFromNib() {
super.awakeFromNib()
self.layer.borderColor = UIColor.lightGray.withAlphaComponent(0.5).cgColor
self.layer.borderWidth = 1 / UIScreen.main.scale
}
}