20 lines
460 B
Objective-C
20 lines
460 B
Objective-C
//
|
|
// TLViewController.h
|
|
// TLChat
|
|
//
|
|
// Created by 李伯坤 on 16/1/23.
|
|
// Copyright © 2016年 李伯坤. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "UIViewController+PopGesture.h"
|
|
|
|
@interface TLViewController : UIViewController
|
|
|
|
@property (nonatomic, strong) NSString *analyzeTitle;
|
|
|
|
/// 当前VC stutusBar的状态,仅在viewWillAppear时生效,默认LightContent
|
|
@property (nonatomic, assign) UIStatusBarStyle statusBarStyle;
|
|
|
|
@end
|