mirror of
https://codeberg.org/comaps/comaps
synced 2026-01-04 11:53:47 +00:00
To expand with full Organic Maps and Maps.ME commits history run: git remote add om-historic [om-historic.git repo url] git fetch --tags om-historic git replace squashed-history historic-commits
18 lines
521 B
Objective-C
18 lines
521 B
Objective-C
@interface MWMPlacePageOpeningHoursDayView : UIView
|
|
|
|
@property (nonatomic) BOOL currentDay;
|
|
@property (nonatomic) CGFloat viewHeight;
|
|
@property (nonatomic) BOOL isCompatibility;
|
|
|
|
@property (nonatomic) CGFloat openTimeLeadingOffset;
|
|
|
|
- (void)setLabelText:(NSString *)text isRed:(BOOL)isRed;
|
|
- (void)setOpenTimeText:(NSString *)text;
|
|
- (void)setBreaks:(NSArray<NSString *> *)breaks;
|
|
- (void)setClosed:(BOOL)closed;
|
|
- (void)setCompatibilityText:(NSString *)text isPlaceholder:(BOOL)isPlaceholder;
|
|
|
|
- (void)invalidate;
|
|
|
|
@end
|