建一个类

如,在Contans.swift中

import UIKit

let kMAIN_SIZE = UIScreen.mainScreen().bounds

在其他地方直接用

比如在

MyTabbarViewController.swift中

var bgView = UIView(frame:CGRectMake(0, 0, kMAIN_SIZE.width, kMAIN_SIZE.height - 20 - 44));

04-24 22:26