Is there a way to (temporarily) disable autolayout error/warning messages:
Unable to simultaneously satisfy constraints. Probably at least one of the con
Swift 4.0 & Swift 5.0 Solution:
//Hide Autolayout Warning UserDefaults.standard.set(false, forKey: "_UIConstraintBasedLayoutLogUnsatisfiable")
Swift 3.0 Solution:
//Hide Autolayout Warning UserDefaults.standard.setValue(false, forKey:"_UIConstraintBasedLayoutLogUnsatisfiable")