// // TopLabelsView.h // mobilefirst // // Created by Scott Pfeil on 2/24/16. // Copyright © 2016 Verizon Wireless. All rights reserved. // #import #import #import #import @class TopLabelsAndBottomButtonsTableViewController; @interface TopLabelsView : MFView @property (nullable, weak, nonatomic) MFLabel *headlineLabel; @property (nullable, weak, nonatomic) MFLabel *messageLabel; @property (nullable, strong, nonatomic) NSLayoutConstraint *topLabelConstraint; @property (nullable, weak, nonatomic) NSLayoutConstraint *spaceBetweenLabels; @property (nullable, weak, nonatomic) NSLayoutConstraint *bottomLabelConstraint; @property (nullable, weak, nonatomic) TopLabelsAndBottomButtonsTableViewController *tableView; @property (nullable, strong, nonatomic) SeparatorView *separatorView;//hidden by default // Use this when using this class as the header in top labels and bottom buttons table view controller. The header has to be set a certain way. - (nullable instancetype)initWithTableView:(nullable TopLabelsAndBottomButtonsTableViewController *)tableView; // Shows and hides the top labels. - (void)showTopLabels; - (void)hideTopLabels; - (void)hideBottomLabels; // Setter for message label - (void)setMessageString:(nullable NSString *)messageString; - (void)setMessageAttributedString:(nullable NSAttributedString *)messageString; // Will adjust spacing as needed. - (void)setHeadlineString:(nullable NSString *)headlineString messageString:(nullable NSString *)messageString; - (void)setHeadlineAttributedString:(nullable NSAttributedString *)headlineString messageAttributedString:(nullable NSAttributedString *)messageString; - (void)setAsLargeHeadline; // Common styles (make sure to call them after newDataBuildScreen), IMPORTANT: seems most of the screens canceled this style. - (void)styleMessageLabelBold; - (void)setLeftConstant:(CGFloat)leftConstant; - (void)setRightConstant:(CGFloat)rightConstant; @end