Search code examples
buttonswiftpositioniboutlet

Change position of a IBOutlet in Swift


So i have this button:

@IBOutlet var bouton: UIBarButtonItem!

And i want to change is position

But the buton doesn't seems to have a position property like for SKSpriteNode

So is there a way to change is position ?


Solution

  • If you want to programmatically change the position of any view, you can use this:

    button.frame.origin = CGPoint(x: 10, y: 10)