在Xcode6之后,需要手动添加.pch. 添加的步骤如下:
一.创建Swift工程
二.添加pch文件
三.上面创建好.pch之后下面开始在setting中进行设置
四.如果是OC到此就可以,但是Swift中需要加入桥接,如下图
五.到此就大功告成了,下面我们进行测试
到这里就可以在Swift工程中使用.pch了.不过,在使用中pch可以用.swift代替。不再使用.pch,下一节来介绍下.swift替代.pch用法.
加入Swift QQ交流群:513653400
在Xcode6之后,需要手动添加.pch. 添加的步骤如下:
一.创建Swift工程
二.添加pch文件
三.上面创建好.pch之后下面开始在setting中进行设置
四.如果是OC到此就可以,但是Swift中需要加入桥接,如下图
五.到此就大功告成了,下面我们进行测试
到这里就可以在Swift工程中使用.pch了.不过,在使用中pch可以用.swift代替。不再使用.pch,下一节来介绍下.swift替代.pch用法.
加入Swift QQ交流群:513653400
本文标题:在Swift中添加 .pch
本文链接:https://www.haomeiwen.com/subject/dowfkttx.html
网友评论
例如:public var MyScreen: CGRect{
return UIScreen.main.bounds
}
public var MyScreenHeight: CGFloat{
return UIScreen.main.bounds.size.height
}
public var MyScreenWith: CGFloat{
return UIScreen.main.bounds.size.width
}
public var myScreenSize: CGSize{
return UIScreen.main.bounds.size
}
// RGB颜色
public func RGBColor(_ r: CGFloat, _ g: CGFloat, _ b: CGFloat) -> UIColor {
return UIColor(red: r / 255.0, green: g / 255.0, blue: b / 255.0, alpha: 1.0)
}
然后直接用就好了