VoiceMessageRecordingView.h 491 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. #import "MZTimerLabel.h"
  7. NS_ASSUME_NONNULL_BEGIN
  8. @interface VoiceMessageRecordingView : UIView
  9. @property (weak, nonatomic) IBOutlet UIImageView *recordingImageView;
  10. @property (weak, nonatomic) IBOutlet UILabel *slideToCancelHintLabel;
  11. @property (weak, nonatomic) IBOutlet MZTimerLabel *recordingTimeLabel;
  12. @end
  13. NS_ASSUME_NONNULL_END