Is there any way to combine two CGRect? I want to add "y: 65.0" to an existing CGRect and can't seem to find any way to do it. Sounds like a simple task to me but seems impossible to do in Xcode since "+=" isn't allowed between CGRect's.
EDIT: Tried using offsetBy and adding them using the following code. When adding the CGRect's i get the error message: No '+' candidates produce the expected contextual result type 'CGRect'
var fromRect:CGRect = self.tableView.rectForRow(at: indexPath)
let addRect = CGRect(x: 0.0, y: 65.0, width: 0.0, height: 0.0)
//fromRect.offsetBy(dx: 0, dy: 65.0)
fromRect = fromRect + addRect