Arquivos
Emosic/app/aff-song/aff-song/RoundedUIButton.swift
T
Charlie Hewitt 25e2163a15 Add app
2017-12-10 16:34:39 +00:00

17 linhas
351 B
Swift

//
// RoundedUIButton.swift
// aff-song
//
// Created by Charlie Hewitt on 10/12/2017.
// Copyright © 2017 Charlie Hewitt. All rights reserved.
//
import Foundation
class RoundedUIButton : UIButton {
required init?(coder aDecoder: NSCoder) {
super.init(coder: aDecoder)
self.layer.cornerRadius = self.frame.height/2
}
}