IBTUIViewController.h 821 Bytes
Newer Older
mei's avatar
mei committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
//
//  IBTUIViewController.h
//  IBTImagePicker
//
//  Created by Xummer on 1/17/15.
//  Copyright (c) 2015 Xummer. All rights reserved.
//

#import <UIKit/UIKit.h>

@class IBTLoadingView;
@interface IBTUIViewController : UIViewController

@property (assign, nonatomic) NSUInteger *m_uiVcType;
@property (strong, nonatomic) IBTLoadingView *loadingViewX;

mei's avatar
mei committed
17 18 19
@property (assign, nonatomic) BOOL bNotAutoAddCancelButton;
@property (strong, nonatomic) NSString *cancelButtonName; // 为当前设置 ModuleView Left Close button

n22's avatar
n22 committed
20

mei's avatar
mei committed
21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
- (void)safeSetEdgesForExtendedLayout:(UIRectEdge)extendedLayout;

- (BOOL)isPresentedIn;
- (BOOL)isPushedIn;

- (void)disMissSelf;

// StatueBar
- (void)updateStatueBarAppearance;

// Keyboard
- (void)keyboardWillShow:(NSNotification *)note;
- (void)keyboardWillHide:(NSNotification *)note;

@end