blob: 974c177a63f6b3247e0614e76064c420fec1d8dd (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
//
// JuickNavigationController.h
// Juick
//
// Created by Vitaly Takmazov on 02/10/2019.
// Copyright © 2019 com.juick. All rights reserved.
//
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
@interface JuickNavigationController : UITabBarController
- (IBAction)showLoginForm:(id)sender;
- (void) refreshStatus;
@property (weak, nonatomic) IBOutlet UIBarButtonItem *leftButton;
@end
NS_ASSUME_NONNULL_END
|