选择modal
点击连的线
在Identifler里键入标示
在代码中使用
self.performSegueWithIdentifier("ro",sender: self)就可以完成跳转
self.dismissViewControllerAnimated(true,completion: nil)
2、主线程中更新界面
昨天在写代码的时候,涉及到界面的都会报错,今天问了别人,给我提醒了以下,自己去百度找了点
dispatch_async(dispatch_get_main_queue(),{ () -> Void in 在这里写界面代码 })
3、UILabel设置文字
self.name.text = commonmethod.readTemporayData("name");