Skip to content
View skiezest's full-sized avatar

Block or report skiezest

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. Ochi Ochi Public

    Ochi — WWDC24 Swift Student Challenge (Accepted)

    Swift

  2. Learn-Morse Learn-Morse Public

    Learn Morse — WWDC23 Swift Student Challenge (Accepted)

    Swift

  3. Inspired by Nathan Gitter's tweet: h... Inspired by Nathan Gitter's tweet: https://twitter.com/nathangitter/status/992842150500069376
    1
    import UIKit
    2
    
                  
    3
    extension UIView {
    4
        func setCornerRadius(_ radius: CGFloat) {
    5
            let roundPath = UIBezierPath(
  4. CustomFont.swift CustomFont.swift
    1
    import UIKit
    2
    
                  
    3
    extension UIFont {
    4
        static func preferredFont(for style: UIFont.TextStyle, weight: UIFont.Weight, design: UIFontDescriptor.SystemDesign = .rounded) -> UIFont {
    5
            let defaultFont = UIFont.preferredFont(forTextStyle: style)
  5. Scale down views while pressed Scale down views while pressed
    1
    import UIKit
    2
    
                  
    3
    extension UIView {
    4
        func squishy() {
    5
            let gesture = UILongPressGestureRecognizer(target: self, action: #selector(handleSquish))