Xib的加载

加载 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的加载)