remove all subviews swift code example
Example 1: how to get appdelegate object in swift
let appDelegate = UIApplication.shared.delegate as! AppDelegate
let aVariable = appDelegate.someVariable
Example 2: swift remove space from string
let freedSpaceString = str.filter {!$0.isWhitespace}