Is there a way to create a button using swift and have it use the default behavior that you would see when just dragging a button out in the Interface Builder?
Creating a button with interface builder gives the default "this is an interactive element" blue to the text/title as well as a color lightening changing effect when it is touched/tapped.
Creating a button with swift just using let myButton = UIButton()
defaults the text AND background color to white(???) and no visual activity indication. I've found that you can set the title color to self.view.tintColor
for every button, but just hoping there might be a better way to "default" it.