MessageSeparatorTableViewCell.h 623 B

1234567891011121314151617181920212223
  1. /**
  2. * SPDX-FileCopyrightText: 2020 Nextcloud GmbH and Nextcloud contributors
  3. * SPDX-License-Identifier: GPL-3.0-or-later
  4. */
  5. #import <UIKit/UIKit.h>
  6. #import "ChatTableViewCell.h"
  7. NS_ASSUME_NONNULL_BEGIN
  8. static CGFloat kMessageSeparatorCellHeight = 24.0;
  9. static NSInteger kUnreadMessagesSeparatorIdentifier = -99;
  10. static NSInteger kChatBlockSeparatorIdentifier = -98;
  11. static NSString *MessageSeparatorCellIdentifier = @"MessageSeparatorCellIdentifier";
  12. @interface MessageSeparatorTableViewCell : ChatTableViewCell
  13. @property (nonatomic, strong) UILabel *separatorLabel;
  14. @end
  15. NS_ASSUME_NONNULL_END