I have a UILabel I sometimes want to center vertically in a cell. This has to be done programatically. I've tried adding the following constraint to center it (locName is the UILabel):
[cell addConstraint:[NSLayoutConstraint constraintWithItem:cell
attribute:NSLayoutAttributeCenterY relatedBy:0 toItem:cell.locName
attribute:NSLayoutAttributeCenterY multiplier:1 constant:0]];
This is the result I get:

It looks like its centering, but maybe changing the height of the UILabel or something?
Here's the view controller in IB:

How can I achieve vertical centering programatically?
