Skip to content
View Deco354's full-sized avatar
Block or Report

Block or report Deco354

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. SwiftDec SwiftDec Public

    A collection of micro-blogs about Swift

    HTML 1

  2. ModularJSONTableView ModularJSONTableView Public

    Swift

  3. A list of Xcode development shortcuts A list of Xcode development shortcuts
    1
    <kbd>⌘ command</kbd> + <kbd>J</kbd> - Choose Editor
    2
    
                  
    3
    <kbd>⌥</kbd> - Open quick find result in secondary editor
    4
    
                  
    5
    <kbd>⇧</kbd> + <kbd>⌃</kbd> + <kbd>⌘</kbd> + <kbd>↩</kbd> - Focus Current Editor
  4. Example showing a retain cycle only ... Example showing a retain cycle only if the completionHandler of an object is explicitly stored
    1
    import UIKit
    2
    
                  
    3
    class ViewController{
    4
        var networking: NetworkManager? = NetworkManager() // Unlike storedHandler this doesn't cause a leak unless it stores the completion
    5
        var isLoading = false