class VIEwController: UIVIEwController,UItableVIEwDelegate,UItableVIEwDataSource { @IBOutlet var tableVIEw : UItableVIEw var items = String[]() overrIDe func vIEwDIDLoad() { super.vIEwDIDLoad() items = ["Hi","Hello","How"] self.tableVIEw.registerClass(CustomtableVIEwCell.self,forCellReuseIDentifIEr: "CusTomCell") // Do any additional setup after loading the vIEw,typically from a nib. } func tableVIEw(tableVIEw: UItableVIEw!,numberOfRowsInSection section: Int) -> Int{ return items.count } func tableVIEw(tableVIEw: UItableVIEw!,cellForRowAtIndexPath indexPath: NSIndexPath!) -> UItableVIEwCell!{ var cell:CustomtableVIEwCell? = self.tableVIEw.dequeueReusableCellWithIDentifIEr("CusTomCell") as? CustomtableVIEwCell if !cell { cell = CustomtableVIEwCell(style: UItableVIEwCellStyle.SubTitle,reuseIDentifIEr: "CusTomCell") } println("cell \(cell)") // cell.?.labelTitle.text = items[indexPath.row] cell!.labelTitle.text = "some text" return cell} overrIDe func dIDReceiveMemoryWarning() { super.dIDReceiveMemoryWarning() // dispose of any resources that can be recreated. }}
当我运行我的代码时,我收到以下错误:“致命错误:无法打开Optional.None”,如图中所示.
解决方法 嗨最后我找到了我的问题的解决方案..请检查我的代码……对我有用..class VIEwController: UIVIEwController,UItableVIEwDataSource { @IBOutlet var tableVIEw : UItableVIEw var items = String[]() overrIDe func vIEwDIDLoad() { super.vIEwDIDLoad() items = ["Hi","How"] // Do any additional setup after loading the vIEw,numberOfRowsInSection section: Int) -> Int{ return items.count } func tableVIEw(tableVIEw: UItableVIEw!,cellForRowAtIndexPath indexPath: NSIndexPath!) -> UItableVIEwCell!{ var cell:CustomtableVIEwCell? = self.tableVIEw.dequeueReusableCellWithIDentifIEr("CusTomCell",forIndexPath: indexPath) as? CustomtableVIEwCell cell!.labelTitle.text = "some text" return cell } overrIDe func dIDReceiveMemoryWarning() { super.dIDReceiveMemoryWarning() // dispose of any resources that can be recreated. }}总结
以上是内存溢出为你收集整理的ios – 自定义UITableviewcell在swift中显示“致命错误:无法解包Optional.None”问题全部内容,希望文章能够帮你解决ios – 自定义UITableviewcell在swift中显示“致命错误:无法解包Optional.None”问题所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)