I need to open a file from web url and open in other apps that have installed in the device using UIDocumentInteractionController
var controller:UIDocumentInteractionController?
self.controller? = UIDocumentInteractionController.init(URL: (NSURL(string: self.filesUrl))!)
where self.filesUrl = self.filesDetailArrayResponse.valueForKey("url")
as! NSArray
is from the json response
But self.controller
returning nil value