2016-01-18 50 views
0

在viewDidLayoutSubView(),我想添加自定義的UIButton我的滾動視圖:添加在滾動視圖的子視圖的原因CUICatalog一個自定義的UIButton子視圖:無效的資產名稱提供

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年1月17日18:51:23.217 momentful [61122:2267703] CUICatalog:無效 資產名供給:2016年1月17日18:51:23.218 momentful [61122:2267703] 無法加載從包中的筆尖引用的「」圖像 i標識

爲什麼會發生這種情況?我怎樣才能解決這個問題 ? 在此先感謝。

回答

0

我想通,你必須將其添加爲一個子視圖到ViewController的看法,以及:

self.view.addSubview(roundedButton) 

一切工作爲目前預計。

相關問題