зеркало из https://github.com/nextcloud/talk-ios.git
26 строки
589 B
Objective-C
26 строки
589 B
Objective-C
//
|
|
// SystemMessageTableViewCell.h
|
|
// VideoCalls
|
|
//
|
|
// Created by Ivan Sein on 07.08.18.
|
|
// Copyright © 2018 struktur AG. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
#import "ChatTableViewCell.h"
|
|
#import "MessageBodyTextView.h"
|
|
|
|
static CGFloat kSystemMessageCellMinimumHeight = 30.0;
|
|
|
|
static NSString *SystemMessageCellIdentifier = @"SystemMessageCellIdentifier";
|
|
|
|
@interface SystemMessageTableViewCell : ChatTableViewCell
|
|
|
|
@property (nonatomic, strong) UILabel *dateLabel;
|
|
@property (nonatomic, strong) MessageBodyTextView *bodyTextView;
|
|
|
|
+ (CGFloat)defaultFontSize;
|
|
|
|
@end
|