iOS Swift - Networking
Given the Swift code below, what will be the value of 'responseString' after the POST request completes successfully?
let url = URL(string: "https://example.com/api")!
var request = URLRequest(url: url)
request.httpMethod = "POST"
request.setValue("application/json", forHTTPHeaderField: "Content-Type")
let jsonBody = ["name": "John"]
request.httpBody = try? JSONSerialization.data(withJSONObject: jsonBody)
// Assume server responds with JSON: {"status":"success"}
// After data task, responseString is set to String(data: data, encoding: .utf8)
