不能使用override func prepareForSegue(>> Cell Title to navigation item<<)

时间:2016-01-12 02:40:46

标签: swift segue

我在准备Segue时遇到问题当我尝试将Cell Title添加到导航项时出现此问题

image description here

/sample
   /data
      /monday mon.txt
      /tuesday tue.txt
      /wednesday wed.txt

1 个答案:

答案 0 :(得分:0)

应用程序崩溃的原因是可选变量未正确解包。 您可以使用可选的绑定或链接方法打开可选项。

替换 -

let indexpath:NSIndexPath = tableaa.indexPathForSelectedRow! 

if let indexpath = tableaa.indexPathForSelectedRow! {vc.title = arr[indexpath.row]}