0

我正在从网络服务获取一些数据。并将该数据加载到包含 5 个图像的 tableview 中,并且一些字符串数据得到完美并成功加载到 tableview。但是当用户点击按钮时再次点击一次再次调用该 webservcie。并再次将该数据加载到该表视图中。

我想再次防止该负载重复。我该怎么做。

当用户点击按钮时,我尝试保存并在 NsuserDefault 中保存密钥。然后检查天气是否存在密钥不调用 web 服务,如果密钥未预设不调用 web 服务,但它在 tablview 中显示为空白。在密钥保存在 NsDictionary 之后。

代码在这里。

-(void)btnCliked
{
  AppDelegate * delegate=(AppDelegate *)[[UIApplication sharedApplication]delegate];


    NSLog(@"%@",[delegate.def objectForKey:@"Check"]);

    if([delegate.def objectForKey:@"Check"])
    {


    }
    else
    {
    delegate.str= [delegate.imgurl stringByAppendingString:@"getappdata.php"];    // Get data through php file

    NSLog(@"%@",delegate.str);

    NSURL * url=[NSURL URLWithString:delegate.str];

    NSData * data=[NSData dataWithContentsOfURL:url];

    NSError * error;

    //Get json data in Dictionary
    NSDictionary *json = [NSJSONSerialization JSONObjectWithData:data options: NSJSONReadingMutableContainers error: &error];

    NSLog(@"%@",json);

    NSLog(@"%@",delegate.firstArray);

    NSArray * responseArr = json[@"Deviceinfo"];

    for(NSDictionary * dict in responseArr)
    {
        [delegate.firstArray addObject:[dict valueForKey:@"Appname"]];
        [delegate.secondArray addObject:[dict valueForKey:@"Description"]];
        [delegate.thirdArray addObject:[dict valueForKey:@"Icon"]];
        [delegate.fourthArray addObject:[dict valueForKey:@"Link"]];

    }

    NSLog(@"%@",delegate.firstArray);
    NSLog(@"%@",delegate.secondArray);
    NSLog(@"This is image path array %@",delegate.thirdArray);
    NSLog(@"this is  App Link Array %@",delegate.fourthArray);


    [delegate.def setObject:delegate.firstArray forKey:@"Check"];
    [delegate.def synchronize];

    }

    GetMoreAppsViewController * gmavc=[[GetMoreAppsViewController alloc]initWithNibName:@"GetMoreAppsViewController" bundle:nil];

    [self.navigationController pushViewController:gmavc animated:YES];
}

我该如何解决这个问题。

提前致谢..

4

1 回答 1

0

这样做

1)将此变量声明为全局

NSDictionary *json

2)单击按钮时首先检查此变量

if(json==nil)
    {
       // call web service

    }
于 2013-09-25T06:27:34.173 回答