OC代码:
_attentionHeaderView = [[[NSBundle mainBundle] loadNibNamed:@"DKAttentionHeaderView" owner:nil options:nil] firstObject];
let arr = NSBundle.mainBundle().loadNibNamed("DKAttentionHeaderView", owner: nil, options: nil)
let firstObject: AnyObject! = arr.first
let attentionHeaderView:DKAttentionHeaderView = firstObject as! DKAttentionHeaderView
如果直接let attentionHeaderView:DKAttentionHeaderView = arr.first,会报错:
cannot convert value of type 'AnyObject?' to specified type 'DKAttentionHeaderView'