ios - Unable to open new window on successful login Post - Swift -
i new swift. trying build app - i have login screen , once user types in correct username , password, user redirected new window. have managed http post requests after unable open new window on successful login. @ibaction func signintapped(sender: uibutton) { let parameters = "{\"email\": \""+txtusername.text+"\", \"password\": \""+txtpassword.text+"\"}" ;//as dictionary<string, string> //create url nsurl let url = nsurl(string: "https://myurl") //change url //create session object var session = nsurlsession.sharedsession() let request = nsmutableurlrequest(url: url!) request.httpmethod = "post" //set http method post var err: nserror? request.httpbody = parameters.datausingencoding(nsutf8stringencoding, allowlossyconversion: true);//nsjsonserialization.datawithjsonobject(parameters, options: nil, error: &err) // pass dic...