iOS App Basics 2 Here is the second post for some functions for basic code makes easy. Create the one Extension file for few basic feature like below: -> Create Extension.swift file in App Basic folder. 1. This extension is used to add max length of TextField entry. extension UITextField { @IBInspectable var maxLength: Int { get { guard let length = maxLengths[ self ] else { return Int.max } return length } set { maxLengths[ self ] = newValue addTarget( self , act...