Welcome to mirror list, hosted at ThFree Co, Russian Federation.

MWMPPView.h « Classes « Maps « iphone - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 60049b831b5e5011da928610b14fa4febe705975 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#pragma mark - MWMPPScrollView

@protocol MWMPlacePageViewUpdateProtocol <NSObject>

- (void)updateWithHeight:(CGFloat)height;

@end

@interface MWMPPScrollView : UIScrollView

- (instancetype)initWithFrame:(CGRect)frame inactiveView:(UIView *)inactiveView;

@property(weak, nonatomic) UIView * inactiveView;

@end

#pragma mark - MWMPPView

@interface MWMPPView : UIView

@property(weak, nonatomic) IBOutlet UIImageView * top;
@property(weak, nonatomic) IBOutlet UIImageView * spinner;
@property(weak, nonatomic) IBOutlet UITableView * tableView;

@property(nonatomic) CGFloat currentContentHeight;
@property(nonatomic) id<MWMPlacePageViewUpdateProtocol> delegate;

- (void)hideTableView:(BOOL)isHidden;

@end