23 lines
519 B
Objective-C
23 lines
519 B
Objective-C
//
|
|
// Copyright (c) 2022 Open Whisper Systems. All rights reserved.
|
|
//
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
typedef NS_ENUM(NSUInteger, OWSSearchBarStyle) {
|
|
OWSSearchBarStyle_Default
|
|
};
|
|
|
|
@interface OWSSearchBar : UISearchBar
|
|
|
|
@property (nonatomic, nullable) UIColor *searchFieldBackgroundColorOverride;
|
|
|
|
+ (void)applyThemeToSearchBar:(UISearchBar *)searchBar;
|
|
+ (void)applyThemeToSearchBar:(UISearchBar *)searchBar style:(OWSSearchBarStyle)style;
|
|
|
|
- (void)switchToStyle:(OWSSearchBarStyle)style;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|