Debugging Tricks
See the Swift generated interface for Objective-C header file
Send deep link to an app in a simulator
xcrun simctl openurl booted "acj://message/1000"See Background Color in UI views
override func viewDidLoad\(\) {
super.viewDidLoad\(\)
// Clear background colors from labels and buttons.
// backgroundColoredViews is a Reference Outlet collection created from the Storyboard
for view in backgroundColoredViews {
view.backgroundColor = UIColor.clear
}
}Last updated