11 lines
254 B
Objective-C
11 lines
254 B
Objective-C
#import "MWMTableViewCell.h"
|
|
|
|
@class SearchResult;
|
|
|
|
static CGFloat const kSearchCellSeparatorInset = 48;
|
|
|
|
@interface MWMSearchCell : MWMTableViewCell
|
|
|
|
- (void)configureWith:(SearchResult * _Nonnull)result isPartialMatching:(BOOL)isPartialMatching;
|
|
|
|
@end
|