I am trying to incorporate auto layout into my UITableViewHeaderFooterView subclass. The class is pretty basic, just two labels. This is the complete subclass:
I don't see where you call translatesAutoresizingMaskIntoConstraints = NO on the footer itself. Should you do this when you create it?
- (id)initWithReuseIdentifier:(NSString *)reuseIdentifier {
self = [super initWithReuseIdentifier:reuseIdentifier];
self.translatesAutoresizingMaskIntoConstraints = NO;
MBTableDetailStyleFooterViewCommonSetup(self);
return self;
}