17 linhas
351 B
Swift
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
|
|
}
|
|
}
|