I have a UITableView with Auto Layout and I need to reduce the height when the GADBannerView appears at the bottom of the screen.
UITableView
GADBannerView
Unfortunat
One more thing, you have to call [self.view layoutIfNeeded]; method once you changne the constraints.
[self.view layoutIfNeeded];
Enjoy :)