在viewDidLayoutSubView()中,我试图将自定义uibutton添加到我的scrollview中:

let roundedButton = RoundedShadowButton()
roundedButton.frame = CGRectMake(0, self.scrollView.frame.height, 60, 60)
roundedButton.setTitle("+", forState: .Normal)
roundedButton.tag = 1
self.scrollView.addSubview(roundedButton)


我收到以下错误:


  2016-01-17 18:51:23.217瞬间[61122:2267703] CUIC目录:无效
  提供的资产名称:2016-01-17 18:51:23.218一刻[61122:2267703]
  无法加载来自捆绑中笔尖的“”图像
  识别码


为什么会这样?我怎样才能解决这个问题 ?
提前致谢。

最佳答案

我认为您还必须将其作为子视图添加到viewcontroller的视图中:

self.view.addSubview(roundedButton)


现在一切都按预期进行。

10-08 20:05