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

SearchResultCell.h « Classes « Maps « iphone - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0a79c50fbf60570a4e5702e5ed452c4033ce5153 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14

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

@interface SearchResultCell : SearchCell

@property (nonatomic, readonly) UILabel * typeLabel;
@property (nonatomic, readonly) UILabel * subtitleLabel;
@property (nonatomic, readonly) UILabel * distanceLabel;
@property (nonatomic, readonly) UIImageView * iconImageView;

+ (CGFloat)cellHeightWithTitle:(NSString *)title type:(NSString *)type subtitle:(NSString *)subtitle distance:(NSString *)distance viewWidth:(CGFloat)width;

@end