0

Android アプリを iPhone に変換したい。サーバーのコンテンツを取得することができました。

 NSString *s =[NSString stringWithFormat:@"www.xyz.com"];
 NSURL *url = [NSURL URLWithString:s];
    //    NSLog(s);
 NSString *content = [NSString stringWithContentsOfURL:url encoding:NSASCIIStringEncoding error:nil];
 NSData *data = [content dataUsingEncoding:NSUTF8StringEncoding];
 NSDictionary *response = [NSJSONSerialization JSONObjectWithData:data options:NSJSONReadingMutableLeaves error:nil];

ただし、ロードされるまでスピナーを回転させて進行状況ダイアログを取得する方法。親切に助けてください。

4

1 に答える 1

5
MBProgressHUD *hud = [MBProgressHUD showHUDAddedTo:self.view animated:YES];
hud.mode = MBProgressHUDModeAnnularDeterminate;
hud.labelText = @"Loading";
[self doSomethingInBackgroundWithProgressCallback:^(float progress) {
    hud.progress = progress;
} completionCallback:^{
    [hud hide:YES];
}];
you have add this code 

https://github.com/jdg/MBProgressHUDからソースをダウンロード

于 2013-11-11T07:33:57.070 に答える