ShareConfirmationCollectionViewCell.h 741 B

1234567891011121314151617181920212223242526
  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. NS_ASSUME_NONNULL_BEGIN
  7. extern NSString *const kShareConfirmationCellIdentifier;
  8. extern NSString *const kShareConfirmationTableCellNibName;
  9. @interface ShareConfirmationCollectionViewCell : UICollectionViewCell
  10. @property (strong, nonatomic) IBOutlet UIImageView *previewView;
  11. @property (strong, nonatomic) IBOutlet UIImageView *placeholderImageView;
  12. @property (strong, nonatomic) IBOutlet UITextView *placeholderTextView;
  13. - (void)setPlaceHolderImage:(UIImage *)image;
  14. - (void)setPlaceHolderText:(NSString *)text;
  15. - (void)setPreviewImage:(UIImage *)image;
  16. @end
  17. NS_ASSUME_NONNULL_END