session-ios/SignalMessaging/categories/UIViewController+OWS.h
2017-12-05 10:29:29 -05:00

25 lines
621 B
Objective-C

//
// Copyright (c) 2017 Open Whisper Systems. All rights reserved.
//
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
@interface UIViewController (OWS)
- (UIViewController *)findFrontmostViewController:(BOOL)ignoringAlerts;
/**
* Takes up a bit less space than the default system back button
* used in the MessagesViewController to help left-align the title view.
*
* **note** Using this breaks the interactive pop gesture (swipe back) unless you set/unset the
* interactivePopGesture.delegate to self/nil on viewWillAppear/Disappear
*/
- (UIBarButtonItem *)createOWSBackButton;
@end
NS_ASSUME_NONNULL_END