| 12345678910111213141516171819202122232425262728 |
- //
- // MainTabVC.h
- // IBOSSMini
- //
- // Created by iHope on 14-6-5.
- // Copyright (c) 2014年 elongtian. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "BusinessNavVC.h"
- #import "BusinessInfoViewController.h"
- #import "ReportNavVC.h"
- #import "ReportInfoViewController.h"
- #import "SettingInfoNavVC.h"
- #import "SettingViewController.h"
- @interface MainTabVC : UITabBarController
- {
- }
- @property (nonatomic, readonly) UIViewController *mRootCtrl;
- @property(nonatomic,strong) BusinessNavVC *businessnavvc;
- @property(nonatomic,strong) BusinessInfoViewController *businessvc;
- @property(nonatomic,strong) ReportNavVC *reportnavvc;
- @property(nonatomic,strong) ReportInfoViewController *reportvc;
- @property(nonatomic,strong) SettingInfoNavVC *settingnavvc;
- @property(nonatomic,strong) SettingViewController *settingvc;
- @end
|