22 lines
429 B
Objective-C
22 lines
429 B
Objective-C
//
|
|
// TLShortcutMethod.h
|
|
// TLChat
|
|
//
|
|
// Created by 李伯坤 on 2017/7/6.
|
|
// Copyright © 2017年 李伯坤. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
/**
|
|
* 为ViewController添加navController
|
|
*/
|
|
UINavigationController *addNavigationController(UIViewController *viewController);
|
|
|
|
/**
|
|
* 初始化tabBarItem
|
|
*/
|
|
void initTabBarItem(UITabBarItem *tabBarItem, NSString *tilte, NSString *image, NSString *imageHL);
|
|
|
|
|