mirror of
https://gitlab.opencode.de/bwi/bundesmessenger/clients/bundesmessenger-ios.git
synced 2026-04-22 01:22:46 +02:00
39 lines
993 B
Objective-C
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
|
|
|