session-ios/Session/Conversations/Settings/OWSMessageTimerView.h

26 lines
635 B
C
Raw Normal View History

2018-07-10 19:27:35 +02:00
//
// Copyright (c) 2018 Open Whisper Systems. All rights reserved.
//
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
@interface OWSMessageTimerView : UIView
2018-07-10 19:47:50 +02:00
- (instancetype)init NS_DESIGNATED_INITIALIZER;
2018-07-10 19:27:35 +02:00
- (instancetype)initWithFrame:(CGRect)frame NS_UNAVAILABLE;
- (nullable instancetype)initWithCoder:(NSCoder *)aDecoder NS_UNAVAILABLE;
2018-07-10 19:47:50 +02:00
- (void)configureWithExpirationTimestamp:(uint64_t)expirationTimestamp
initialDurationSeconds:(uint32_t)initialDurationSeconds
tintColor:(UIColor *)tintColor;
- (void)prepareForReuse;
2018-07-10 19:27:35 +02:00
+ (CGSize)measureSize;
@end
NS_ASSUME_NONNULL_END