Skip to content

Instantly share code, notes, and snippets.

View iSevenDays's full-sized avatar

Anton Sokolchenko iSevenDays

View GitHub Profile
@iSevenDays
iSevenDays / TextAlert.swift
Last active August 7, 2020 10:01 — forked from chriseidhof/TextAlert.swift
TextAlert
//
// ContentView.swift
//
// Created by Chris Eidhof on 20.04.20.
// Copyright © 2020 objc.io. All rights reserved.
//
// Updated by Anton Sokolchenko for Xcode 12 Beta 4
import SwiftUI
import UIKit
@iSevenDays
iSevenDays / 0_reuse_code.js
Created February 9, 2016 10:05
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
@iSevenDays
iSevenDays / UILabel+dynamicSizeMe.h
Last active September 21, 2015 14:08 — forked from danielphillips/UILabel+dynamicSizeMe.h
Adjust UILabel to change it's frame according to it's content
@interface UILabel (dynamicSizeMe)
-(float)resizeToFit;
-(float)expectedHeight;
@end