ShareTableViewCell.h 500 B

1234567891011121314151617181920
  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. @class AvatarImageView;
  7. extern NSString *const kShareCellIdentifier;
  8. extern NSString *const kShareTableCellNibName;
  9. extern CGFloat const kShareTableCellHeight;
  10. @interface ShareTableViewCell : UITableViewCell
  11. @property (weak, nonatomic) IBOutlet AvatarImageView *avatarImageView;
  12. @property (weak, nonatomic) IBOutlet UILabel *titleLabel;
  13. @end