Files
bundesmessenger-ios/Riot/Modules/StartChat/StartChatViewController.h
T
Mauro Romito 12837d4b89 update license
2024-09-25 12:24:52 +02:00

39 lines
993 B
Objective-C

/*
Copyright 2024 New Vector Ltd.
Copyright 2016 OpenMarket Ltd
SPDX-License-Identifier: AGPL-3.0-only
Please see LICENSE in the repository root for full details.
*/
#import "ContactsTableViewController.h"
/**
'StartChatViewController' instance is used to prepare new room creation.
*/
@interface StartChatViewController : ContactsTableViewController
/**
Tell whether a search session is in progress
*/
@property (nonatomic) BOOL isAddParticipantSearchBarEditing;
/**
Returns the `UINib` object initialized for a `StartChatViewController`.
@return The initialized `UINib` object or `nil` if there were errors during initialization
or the nib file could not be located.
*/
+ (UINib *)nib;
/**
Creates and returns a new `StartChatViewController` object.
@discussion This is the designated initializer for programmatic instantiation.
@return An initialized `StartChatViewController` object if successful, `nil` otherwise.
*/
+ (instancetype)startChatViewController;
@end