22 lines
527 B
Objective-C
22 lines
527 B
Objective-C
//
|
|
// Copyright (c) 2017 Open Whisper Systems. All rights reserved.
|
|
//
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@class SignalsViewController;
|
|
|
|
@interface ProfileViewController : UIViewController
|
|
|
|
- (instancetype)init NS_UNAVAILABLE;
|
|
|
|
+ (BOOL)shouldDisplayProfileViewOnLaunch;
|
|
|
|
+ (void)presentForAppSettings:(UINavigationController *)navigationController;
|
|
+ (void)presentForRegistration:(UINavigationController *)navigationController;
|
|
+ (void)presentForUpgradeOrNag:(SignalsViewController *)presentingController;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|