summaryrefslogtreecommitdiff
path: root/Juick/MessageCell.h
diff options
context:
space:
mode:
authorGravatar Vitaly Takmazov2013-11-03 01:36:13 +0400
committerGravatar Vitaly Takmazov2013-11-03 01:36:13 +0400
commite539bdfe4c81fb56fc1974596f1795e061b52663 (patch)
tree2cd709e69ec8ad9c52fb0c63f3a6a398d10f1cdb /Juick/MessageCell.h
parent566f122683240ea47f391033ec4e11ef424e7a5c (diff)
Detect links
Diffstat (limited to 'Juick/MessageCell.h')
-rw-r--r--Juick/MessageCell.h7
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;