mirror of https://github.com/oxen-io/session-ios
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
710 B
C
32 lines
710 B
C
8 years ago
|
//
|
||
7 years ago
|
// Copyright (c) 2018 Open Whisper Systems. All rights reserved.
|
||
8 years ago
|
//
|
||
|
|
||
5 years ago
|
#import <SignalUtilitiesKit/OWSViewController.h>
|
||
8 years ago
|
|
||
8 years ago
|
@class TSThread;
|
||
|
|
||
8 years ago
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
||
8 years ago
|
@protocol SelectThreadViewControllerDelegate <NSObject>
|
||
|
|
||
|
- (void)threadWasSelected:(TSThread *)thread;
|
||
|
|
||
|
- (BOOL)canSelectBlockedContact;
|
||
|
|
||
7 years ago
|
- (nullable UIView *)createHeaderWithSearchBar:(UISearchBar *)searchBar;
|
||
8 years ago
|
|
||
8 years ago
|
@end
|
||
|
|
||
|
#pragma mark -
|
||
|
|
||
8 years ago
|
// A base class for views used to pick a single signal user, either by
|
||
|
// entering a phone number or picking from your contacts.
|
||
8 years ago
|
@interface SelectThreadViewController : OWSViewController
|
||
8 years ago
|
|
||
7 years ago
|
@property (nonatomic, weak) id<SelectThreadViewControllerDelegate> selectThreadViewDelegate;
|
||
8 years ago
|
|
||
|
@end
|
||
8 years ago
|
|
||
|
NS_ASSUME_NONNULL_END
|