Is it possible to give a tableview a custom origin/size? Adding a Backgroundimage to a Tableview is explained here enter link description here. But can i tell in viewdidload the position of it?
I thought about something like:
mytableView.backgroundView?.frame.origin = CGPoint(x: 100, y: 100)
or
mytableView.backgroundView?.frame = CGRect(x: 100, y: 100, width: 100, height: 100)
implementing in viewDidLoad(). But it just fills the whole UIScreen and doesn't react on the code.
Thanks in advance.