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

MWMPlacePageInfoCell.h « Classes « Maps « iphone - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 203cc024d87514ac3fbf8e7257b226a370a889ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//
//  MWMPlacePageBaseCell.h
//  Maps
//
//  Created by v.mikhaylenko on 27.04.15.
//  Copyright (c) 2015 MapsWithMe. All rights reserved.
//

#import <UIKit/UIKit.h>
#import "MWMPlacePageEntity.h"

@interface MWMPlacePageInfoCell : UITableViewCell

- (void)configureWithType:(MWMPlacePageMetadataType)type info:(NSString *)info;

@property (weak, nonatomic, readonly) IBOutlet UIImageView * icon;
@property (weak, nonatomic, readonly) IBOutlet id textContainer;
@property (nonatomic) MWMPlacePageEntity * currentEntity;

@end