- Enable Quick Look Plugins
- Set VIM Tab Stops
- Add any VIM plugins
- Install iTerm
- Theme Configuration: iTerm → preferences → profiles → colors → load presets
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// LeakyViewControllerChecker.swift | |
// Devised by: Arek Holko | |
// Blog Post: http://holko.pl/2017/06/26/checking-uiviewcontroller-deallocation | |
extension UIViewController { | |
/// This method asserts whether a view controller gets deallocated after it disappeared due to one of these reasons: | |
/// - it was removed from its parent, or | |
/// - it (or one of its parents) was dismissed. | |
/// |