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

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

#import <UIKit/UIKit.h>

@interface SearchCell : UITableViewCell

@property (nonatomic) UIView * separatorView;
@property (nonatomic, readonly) UILabel * titleLabel;

- (void)setTitle:(NSString *)title selectedRanges:(NSArray *)selectedRanges;
- (void)configTitleLabel;

@end