Ciao, devo implementare chiamate REST nella mia app. Ho esequito la chiamata in POST e sempra che vada a buon fine; viene eseguito il success.
[self POST:@"url" parameters:parameters
success:^(NSURLSessionDataTask *task, id responseObject) {
} failure:^(NSURLSessionDataTask *task, NSError *error) {
}];
The problem is that I do not know how to display the result of the call. Can you suggest something ?