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
		
	
	
		
			707 B
		
	
	
	
		
			Objective-C
		
	
			
		
		
	
	
			32 lines
		
	
	
		
			707 B
		
	
	
	
		
			Objective-C
		
	
//
 | 
						|
//  Copyright (c) 2018 Open Whisper Systems. All rights reserved.
 | 
						|
//
 | 
						|
 | 
						|
#import <SignalMessaging/OWSViewController.h>
 | 
						|
 | 
						|
@class TSThread;
 | 
						|
 | 
						|
NS_ASSUME_NONNULL_BEGIN
 | 
						|
 | 
						|
@protocol SelectThreadViewControllerDelegate <NSObject>
 | 
						|
 | 
						|
- (void)threadWasSelected:(TSThread *)thread;
 | 
						|
 | 
						|
- (BOOL)canSelectBlockedContact;
 | 
						|
 | 
						|
- (nullable UIView *)createHeaderWithSearchBar:(UISearchBar *)searchBar;
 | 
						|
 | 
						|
@end
 | 
						|
 | 
						|
#pragma mark -
 | 
						|
 | 
						|
// A base class for views used to pick a single signal user, either by
 | 
						|
// entering a phone number or picking from your contacts.
 | 
						|
@interface SelectThreadViewController : OWSViewController
 | 
						|
 | 
						|
@property (nonatomic, weak) id<SelectThreadViewControllerDelegate> selectThreadViewDelegate;
 | 
						|
 | 
						|
@end
 | 
						|
 | 
						|
NS_ASSUME_NONNULL_END
 |