summaryrefslogtreecommitdiff
path: root/Juick/Views/ConversationCell.h
diff options
context:
space:
mode:
authorGravatar Vitaly Takmazov2023-05-13 17:41:43 +0300
committerGravatar Vitaly Takmazov2023-05-14 01:15:35 +0300
commitcc94c2555c22cd51722034ac1ff02a0c041653c4 (patch)
treeeeca6f34f9d8d36c7066b1d1f1d78f2d657bead7 /Juick/Views/ConversationCell.h
parent773754148b7006140963dcebfab21766b6f1c6fb (diff)
ConversationCell.{h,m} -> ConversationCell.swift
Diffstat (limited to 'Juick/Views/ConversationCell.h')
-rw-r--r--Juick/Views/ConversationCell.h20
1 files changed, 0 insertions, 20 deletions
diff --git a/Juick/Views/ConversationCell.h b/Juick/Views/ConversationCell.h
deleted file mode 100644
index f31057b..0000000
--- a/Juick/Views/ConversationCell.h
+++ /dev/null
@@ -1,20 +0,0 @@
-//
-// 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