mirror of https://github.com/oxen-io/session-ios
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
1.3 KiB
Objective-C
59 lines
1.3 KiB
Objective-C
// Created by Dylan Bourgeois on 20/11/14.
|
|
// Portions Copyright (c) 2014 Open Whisper Systems. All rights reserved.
|
|
|
|
#import "OWSCallCollectionViewCell.h"
|
|
#import <JSQMessagesViewController/UIView+JSQMessages.h>
|
|
|
|
|
|
@interface OWSCallCollectionViewCell ()
|
|
|
|
@property (weak, nonatomic) IBOutlet JSQMessagesLabel *cellLabel;
|
|
@property (weak, nonatomic) IBOutlet UIImageView *outgoingCallImageView;
|
|
@property (weak, nonatomic) IBOutlet UIImageView *incomingCallImageView;
|
|
|
|
@end
|
|
|
|
@implementation OWSCallCollectionViewCell
|
|
|
|
#pragma mark - Class Methods
|
|
|
|
+ (UINib *)nib
|
|
{
|
|
return [UINib nibWithNibName:NSStringFromClass([self class]) bundle:[NSBundle mainBundle]];
|
|
}
|
|
|
|
+ (NSString *)cellReuseIdentifier
|
|
{
|
|
return NSStringFromClass([self class]);
|
|
}
|
|
|
|
#pragma mark - Initializer
|
|
|
|
- (void)awakeFromNib
|
|
{
|
|
[super awakeFromNib];
|
|
|
|
[self setTranslatesAutoresizingMaskIntoConstraints:NO];
|
|
|
|
self.backgroundColor = [UIColor whiteColor];
|
|
|
|
self.cellLabel.textAlignment = NSTextAlignmentCenter;
|
|
self.cellLabel.font = [UIFont fontWithName:@"HelveticaNeue-Light" size:14.0f];
|
|
self.cellLabel.textColor = [UIColor lightGrayColor];
|
|
}
|
|
|
|
- (void)dealloc
|
|
{
|
|
_cellLabel = nil;
|
|
}
|
|
|
|
#pragma mark - Collection view cell
|
|
|
|
- (void)prepareForReuse
|
|
{
|
|
[super prepareForReuse];
|
|
self.cellLabel.text = nil;
|
|
}
|
|
|
|
@end
|