Skip to content

Instantly share code, notes, and snippets.

View marekbruchaty's full-sized avatar

Marek Bruchatý marekbruchaty

View GitHub Profile
@marekbruchaty
marekbruchaty / template-readme.md
Last active August 8, 2020 02:13
The ultimate GitHub readme template
@marekbruchaty
marekbruchaty / app.swift
Last active April 10, 2018 12:29 — forked from licvido/app.swift
Fade when changing UIImageView's image
let toImage = UIImage(named:"image.png")
UIView.transitionWithView(self.imageView,
duration:5,
options: .TransitionCrossDissolve,
animations: { self.imageView.image = toImage },
completion: nil)