LindyLo
LindyLo
Just add ``` self.autoresizingMask = UIViewAutoresizingFlexibleWidth; ``` to - (id)initWithFrame:(CGRect)frame in RKDropdownAlert.m additionally add constrains to Labels (after [view addSubview]): ``` titleLabel.translatesAutoresizingMaskIntoConstraints = NO; messageLabel.translatesAutoresizingMaskIntoConstraints = NO; [self addConstraints:[NSLayoutConstraint constraintsWithVisualFormat:@"H:|-[titleLabel]-|"...

Thanks, I'm afraid there is also two more files are missing (NSObject+SSYBindingsHelp):