swift 来自笔尖的UIView
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了swift 来自笔尖的UIView相关的知识,希望对你有一定的参考价值。
extension UIView {
class func fromNib<T: UIView>() -> T {
return Bundle.main.loadNibNamed(String(describing: T.self), owner: nil, options: nil)![0] as! T
}
}
//Then call it like this:
let myCustomView: CustomView = UIView.fromNib()
//..or even:
let myCustomView: CustomView = .fromNib()
以上是关于swift 来自笔尖的UIView的主要内容,如果未能解决你的问题,请参考以下文章
来自笔尖的IOS loadingView
iOS:从笔尖加载自定义 UIView
将笔尖加载到 UIView 中?
从笔尖加载的 UIView 未显示多个 UILabel
从笔尖创建的 UICollectionViewCell 中的奇怪 UIView
我可以在笔尖和编程中定义 UIView 吗?