func backVC(){
self.navigationController?.popViewController(animated:true)
}
运行时的时候报警告"Expression of type "UIViewController?" is unused".
在swift3.0情况下修改方式如下
func backVC(){
_ = self.navigationController?.popViewController(animated:true)
}