diff options
Diffstat (limited to 'Juick/MessageCell.h')
-rw-r--r-- | Juick/MessageCell.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Juick/MessageCell.h b/Juick/MessageCell.h index 6f93048..299c3b3 100644 --- a/Juick/MessageCell.h +++ b/Juick/MessageCell.h @@ -7,14 +7,15 @@ // #import <UIKit/UIKit.h> +#import "TTTAttributedLabel.h" #define kLabelHorizontalInsets 20.0f -@interface MessageCell : UITableViewCell +@interface MessageCell : UITableViewCell<TTTAttributedLabelDelegate> -@property (strong, nonatomic) IBOutlet UILabel *titleLabel; -@property (strong, nonatomic) IBOutlet UILabel *bodyLabel; +@property (strong, nonatomic) IBOutlet TTTAttributedLabel *titleLabel; +@property (strong, nonatomic) IBOutlet TTTAttributedLabel *bodyLabel; - (void)updateFonts; |