AutoCompletionTableViewCell.h 599 B

123456789101112131415161718192021
  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. static CGFloat kAutoCompletionCellHeight = 50.0;
  7. static NSString *AutoCompletionCellIdentifier = @"AutoCompletionCellIdentifier";
  8. @class AvatarButton;
  9. @interface AutoCompletionTableViewCell : UITableViewCell
  10. @property (nonatomic, strong) UILabel *titleLabel;
  11. @property (nonatomic, strong) AvatarButton *avatarButton;
  12. @property (nonatomic, strong) UIImageView *userStatusImageView;
  13. - (void)setUserStatus:(NSString *)userStatus;
  14. @end