在我的应用程序中,我使用同步请求调用 web 服务。在每次通话之前,我都想更新我的 UILabel 以显示进度。喜欢:
lblTest.text=@"Downloading data XYZ";
NSData *dati = [NSURLConnection sendSynchronousRequest:richiesta returningResponse:&response error:&error];
lblTest.text=@"Downloading data ABC";
NSData *dati = [NSURLConnection sendSynchronousRequest:richiesta returningResponse:&response error:&error];
但标签文本没有改变。
有人对此有任何想法吗?