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: 78350fc53e0895e77f3ad2fbab3728a61275ceea (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
//
//  MWMPlacePageBookmarkCell.h
//  Maps
//
//  Created by v.mikhaylenko on 29.04.15.
//  Copyright (c) 2015 MapsWithMe. All rights reserved.
//

#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