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

Block or report srstanic

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. ios-architecture-example-app ios-architecture-example-app Public

    MobileShop - Example iOS app

    Swift 6 1

  2. NibView NibView
    1
    import UIKit
    2
    
                  
    3
    /// Extend `NibView` to create a reusable view in a XIB file.
    4
    /// The contents of the view are designed in a XIB file.
    5
    /// The `NibView` class is responsible for loading the
  3. KeyboardAvoider.swift KeyboardAvoider.swift
    1
    import UIKit
    2
    
                  
    3
    
                  
    4
    class KeyboardAvoider {
    5
    
                  
  4. UIViewController+StoryboardInit.swift UIViewController+StoryboardInit.swift
    1
    import UIKit
    2
    
                  
    3
    extension UIViewController {
    4
        /// Creates an instance of `ViewControllerType` defined in a storyboard.
    5
        ///
  5. CodedView.swift CodedView.swift
    1
    extension UIView {
    2
        static func withoutConstraints() -> Self {
    3
            let instance = self.init()
    4
            instance.translatesAutoresizingMaskIntoConstraints = false
    5
            return instance
  6. Generic implementation of UITableVie... Generic implementation of UITableViewDataSource & UITableViewDelegate
    1
    import UIKit
    2
    
                  
    3
    extension UITableViewCell {
    4
        class var reuseIdentifier: String {
    5
            return "tableViewCell"