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

MWMPlacePageBookmarkCell.h « Classes « Maps « iphone - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9c71f85235dc3f14dea4992e2b7ae7b68a3e0d84 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#import <UIKit/UIKit.h>

@class MWMPlacePageEntity, MWMPlacePage, MWMTextView;

@interface MWMPlacePageBookmarkCell : UITableViewCell

@property (weak, nonatomic, readonly) IBOutlet UITextField * title;
@property (weak, nonatomic, readonly) IBOutlet UIButton * categoryButton;
@property (weak, nonatomic, readonly) IBOutlet UIButton * markButton;
@property (weak, nonatomic, readonly) IBOutlet UILabel * descriptionLabel;
@property (weak, nonatomic) UITableView * ownerTableView;
@property (weak, nonatomic) MWMPlacePage * placePage;

- (void)configure;

@end