Skip to content

Instantly share code, notes, and snippets.

View yashthaker7's full-sized avatar
🎯
Focusing

Yash Thaker yashthaker7

🎯
Focusing
View GitHub Profile
@yashthaker7
yashthaker7 / UIView+Extension.swift
Last active June 25, 2018 07:13
Apply gradient to view + Corner radius particular side to view + Anchors
import UIKit
extension UIView {
enum gradientType {
case vertical
case horizontal
case cross
}
@yashthaker7
yashthaker7 / UIColor+Extension.swift
Last active June 25, 2018 06:57
UIColor+Extension.swift
extension UIColor {
convenience public init(r: CGFloat, g: CGFloat, b: CGFloat) {
self.init(r: r, g: g, b: b, a: 1)
}
convenience public init(r: CGFloat, g: CGFloat, b: CGFloat, a: CGFloat) {
self.init(red: r/255, green: g/255, blue: b/255, alpha: a)
}
}