23 lines
432 B
C
23 lines
432 B
C
|
|
//
|
||
|
|
// TUISearchGroupViewController.h
|
||
|
|
// TUIKitDemo
|
||
|
|
//
|
||
|
|
// Created by annidyfeng on 2019/5/20.
|
||
|
|
// Copyright © 2019 Tencent. All rights reserved.
|
||
|
|
//
|
||
|
|
#import <UIKit/UIKit.h>
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
|
||
|
|
@interface SearchGroupSearchResultViewController : UIViewController
|
||
|
|
|
||
|
|
@end
|
||
|
|
|
||
|
|
@interface TUISearchGroupViewController : UIViewController
|
||
|
|
|
||
|
|
@property(nonatomic, retain) UISearchController *searchController;
|
||
|
|
|
||
|
|
@end
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_END
|