mirror of
https://github.com/oxen-io/session-ios.git
synced 2023-12-13 21:30:14 +01:00
27 lines
844 B
Objective-C
27 lines
844 B
Objective-C
//
|
|
// Copyright (c) 2018 Open Whisper Systems. All rights reserved.
|
|
//
|
|
|
|
#import <SignalMessaging/OWSViewController.h>
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@class TSThread;
|
|
|
|
@interface HomeViewController : OWSViewController
|
|
|
|
- (void)presentThread:(TSThread *)thread
|
|
keyboardOnViewAppearing:(BOOL)keyboardOnViewAppearing
|
|
callOnViewAppearing:(BOOL)callOnViewAppearing;
|
|
|
|
- (void)updateInboxCountLabel;
|
|
|
|
- (void)showNewConversationView;
|
|
|
|
- (void)presentTopLevelModalViewController:(UIViewController *)viewController
|
|
animateDismissal:(BOOL)animateDismissal
|
|
animatePresentation:(BOOL)animatePresentation;
|
|
- (void)pushTopLevelViewController:(UIViewController *)viewController
|
|
animateDismissal:(BOOL)animateDismissal
|
|
animatePresentation:(BOOL)animatePresentation;
|
|
|
|
@end
|