美文网首页
Xib的加载

Xib的加载

作者: 牛1688 | 来源:发表于2020-07-24 22:21 被阅读0次

    加载 mainbundle的 Xib 文件

            if let v =Bundle.main.loadNibNamed("ShowView", owner:nil, options:nil

            )?.lastas?ShowView{

                self.view.addSubview(v)

                v.backgroundColor = UIColor.green

               v.frame=CGRect.init(x:50, y:40, width:100, height:200)

            }

    不指定 bundle 加载的 Xib 文件

    if let v =UINib.init(nibName:"ShowView", bundle:Bundle.init(for:ShowView.self)).instantiate(withOwner:nil, options:nil).lastas?ShowView{

                     self.view.addSubview(v)

                     v.backgroundColor = UIColor.green

                     v.frame=CGRect.init(x:50, y:40, width:100, height:200)

                }

    相关文章

      网友评论

          本文标题:Xib的加载

          本文链接:https://www.haomeiwen.com/subject/lnzslktx.html