summaryrefslogtreecommitdiff
path: root/Juick/Views/ConversationCell.h
diff options
context:
space:
mode:
Diffstat (limited to 'Juick/Views/ConversationCell.h')
-rw-r--r--Juick/Views/ConversationCell.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/Juick/Views/ConversationCell.h b/Juick/Views/ConversationCell.h
new file mode 100644
index 0000000..f31057b
--- /dev/null
+++ b/Juick/Views/ConversationCell.h
@@ -0,0 +1,20 @@
+//
+// ConversationCell.h
+// Juick
+//
+// Created by Vitaly Takmazov on 04/03/2018.
+// Copyright © 2018 com.juick. All rights reserved.
+//
+
+#import <UIKit/UIKit.h>
+#import "Chat.h"
+
+@interface ConversationCell : UITableViewCell
+@property (strong, nonatomic) IBOutlet UILabel *chatName;
+@property (strong, nonatomic) IBOutlet UIImageView *avatar;
+@property (strong, nonatomic) IBOutlet UILabel *lastMessage;
+@property (strong, nonatomic) IBOutlet UILabel *unreadMarker;
+
+-(void) configureWithChat:(Chat *)chat;
+
+@end