[Solved] Swift, Pass data from popover controller to previous controller [closed]


You can use custom delegate method to fill the value.

class PopupviewController {

    weak var delegate: filleTextViewDelegate?

    func calldelegate () {
       delegate?.fillTextview(filledData)
   }  
}
protocol filleTextViewDelegate : class {
          func fillTextview(filledData: String)
}
class CurrentViewController :filleTextViewDelegate {

   func fillTextview(filledData: String) {
    textView.text = filledData   
   }

}

solved Swift, Pass data from popover controller to previous controller [closed]