Arquivos
Emosic/App/aff-song/Style/BorderedImageView.swift
T
Charlie Hewitt 42d34544b3 fix paths
2018-04-26 13:39:03 +01:00

19 linhas
401 B
Swift

//
// BorderedImageView.swift
// aff-song
//
// Created by Charlie Hewitt on 10/12/2017.
// Copyright © 2017 Charlie Hewitt. All rights reserved.
//
import Foundation
class BorderedImageView : UIImageView {
required init?(coder aDecoder: NSCoder) {
super.init(coder: aDecoder)
self.layer.borderWidth = 1.0
self.layer.borderColor = UIColor.white.cgColor
}
}