我正在尝试加载名为" AddProgramView"的xib字段。当用户按下按钮时使用loadnibnamed。我在故事板中创建了xib,在xib视图中放置了各种子视图,并将出口连接到名为AddProgramView的相应swift文件。当我加载xib时,没有任何子视图出现。他们都失踪了。救命?这是我的代码
在我的主视图控制器中:
@IBAction func addProgram(sender: UIButton) {
if let _ = addProgramView {
addProgramView!.frame = CGRectMake(0, self.window!.frame.origin.y + self.window!.frame.height, self.window!.frame.width, CGFloat(325))
}
else {
let addProgramViews = NSBundle.mainBundle().loadNibNamed("AddProgramView", owner: self, options: nil)
addProgramView = addProgramViews.first as? AddProgramView
addProgramView!.frame = CGRectMake(0, self.window!.frame.origin.y + self.window!.frame.height, self.window!.frame.width, CGFloat(325))
window?.addSubview(addProgramView!)
}
window?.bringSubviewToFront(addProgramView!)
UIView.animateWithDuration(0.3, delay: 0.0, options: UIViewAnimationOptions.CurveEaseOut, animations: {
self.addProgramView!.frame.origin.y -= CGFloat(325)
}, completion: nil)
}
AddProgramView.swift文件:
class AddProgramView: UIView {
@IBOutlet weak var nameField: UITextField!
@IBOutlet weak var cancelButton: UIButton!
@IBOutlet weak var instructionsLabel: UILabel!
}
答案 0 :(得分:5)
首先检查,如果您在视图中声明了您的类名,而不是文件所有者。
如果没有,那就去做吧。然后再试一次。
另一个选项是在 AddProgramView.swift 中创建IBOutlet
@IBOutlet var contentView: UIView!
并从视图中删除类名,并将其添加到File的所有者。
通过右键单击文件所有者来连接contentView:
然后创建如下的init方法:
class AddProgramView: UIView {
@IBOutlet var contentView: UIView!
override init(frame: CGRect) {
super.init(frame: frame)
commonInit()
}
required init?(coder aDecoder: NSCoder) {
super.init(coder: aDecoder)
commonInit()
}
func commonInit() {
NSBundle.mainBundle().loadNibNamed("AddProgramView", owner: self, options: nil)
self.addSubview(self.contentView)
self.contentView.frame = self.bounds
}
}
现在您可以在任何地方使用AddProgramView。通过init(frame:)
let addProgramView = AddProgramView.init(frame: CGRectMake(0, 0, 320, 30))
或者您可以通过添加UIView直接在故事板中使用它们并将它们设置为 AddProgramView (没有额外的代码行,故事板会为您调用init(编码器:))
我为您创建了示例项目 - CustomView project
答案 1 :(得分:1)
仔细检查您是否在xib文件中指定了大小等级。应该在编辑器窗口的底部说Any / Any。