我在Xcode storyboard中有一個單元,其中有一個在屬性中設置的標識符和類。NSStringFromClass是否返回標識符?
在我在別人的GitHub的倉庫看代碼,做類似的事情,以我的應用程序,它具有:
let cell = tableView.dequeueReusableCellWithIdentifier(NSStringFromClass(myCellClass), forIndexPath: indexPath) as myCellClass
文檔說「返回一個類以字符串形式的名稱。」
那麼我可以將NSStringFromClass(myCellClass)
替換爲我在故事板屬性中設置的"myidentifier"
?
我得到,儘管它可能是無關緊要的錯誤是:
Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'unable to dequeue a cell with identifier MyApp.myCellClass - must register a nib or a class for the identifier or connect a prototype cell in a storyboard'
您是否閱讀過錯誤信息? –