// // UIViewController+StoryBoard.h // Patrol // // Created by 曹云霄 on 2017/7/20. // Copyright © 2017年 上海勾芒科技信息有限公司. All rights reserved. // #import <UIKit/UIKit.h> /** 初始化storyboard - STORYBOARD_TYPE_MAIN: 主要 - STORYBOARD_TYPE_ANNOUNCEMENT: 公告 - STORYBOARD_TYPE_GUIDEINTERGRAL: 导购积分 - STORYBOARD_TYPE_USER: 用户 - STORYBOARD_TYPE_LEARNINGCENTER: 学习中心 */ typedef NS_ENUM(NSInteger, STORYBOARD_TYPE_) { STORYBOARD_TYPE_MAIN, STORYBOARD_TYPE_ANNOUNCEMENT, STORYBOARD_TYPE_GUIDEINTERGRAL, STORYBOARD_TYPE_USER, STORYBOARD_TYPE_LEARNINGCENTER, }; @interface UIViewController (StoryBoard) + (instancetype)viewControllerWithStoryBoardType:(STORYBOARD_TYPE_)type; @end