| 
              //
//  UIStoryBoardExt.swift
//  PaiAi
//
//  Created by mac on 16/7/21.
//  Copyright © 2016年 FFIB. All rights reserved.
//
import UIKit
import Foundation
extension UIStoryboard {
    static var mainBoard: UIStoryboard {
        get {
            return UIStoryboard(name: "Main", bundle: nil)
        }
    }
    static var mineBoard: UIStoryboard {
        get {
            return UIStoryboard(name: "Mine", bundle: nil)
        }
    }
    static var messageBoard: UIStoryboard {
        get {
            return UIStoryboard(name: "Message", bundle: nil)
        }
    }
    static var detailBoard: UIStoryboard {
        get {
            return UIStoryboard(name: "Detail", bundle: nil)
        }
    }
    static var groupDetail: UIStoryboard {
        get {
            return UIStoryboard(name: "GroupDetail", bundle: nil)
        }
    }
    static var alert: UIStoryboard {
        get {
            return UIStoryboard(name: "Alert", bundle: nil)
        }
    }
}
 
  |