mirror of
https://codeberg.org/comaps/comaps
synced 2025-12-21 05:43:37 +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
15 lines
397 B
Objective-C
15 lines
397 B
Objective-C
#import <UIKit/UIKit.h>
|
|
@class MWMDownloadTransitMapAlert;
|
|
|
|
@interface MWMDownloaderDialogHeader : UIView
|
|
|
|
@property (weak, nonatomic) IBOutlet UIButton * headerButton;
|
|
@property (weak, nonatomic) IBOutlet UIImageView * expandImage;
|
|
|
|
+ (instancetype)headerForOwnerAlert:(MWMDownloadTransitMapAlert *)alert;
|
|
- (void)layoutSizeLabel;
|
|
|
|
- (void)setTitle:(NSString *)title size:(NSString *)size;
|
|
|
|
@end
|