(void)bilgileriYukle
{
    NSMutableArray *yemekIsimleri = [[NSMutableArray alloc] init];
    NSMutableArray *resimIsimleri = [[NSMutableArray alloc] init];
    NSURL *myURL = [[NSURL alloc]initWithString:@"http://www.sevgilezzeti.com/WebServices/tarifler.php"];
    NSData *myData = [[NSData alloc]initWithContentsOfURL:myURL];
    if (myData == nil)
    {
        NSLog(@"INTERNET YOK YADA VERI CEKEMEDI");
    }
    else
    {
        NSLog(@"INTERNET VAR VERI CEKILDI");
        NSArray *jsonArray = [NSJSONSerialization JSONObjectWithData:myData options:kNilOptions error:nil];
        for (id element in jsonArray)
        {
            NSString *durum = [element objectForKey:@"durum"];
            if([durum isEqualToString:@"1"])
            {
                [yemekIsimleri addObject:[element objectForKey:@"yemekadi"]];
                NSString *gelenYemekAdi =[element objectForKey:@"kapakresmi"];
                NSString *imagePathKapak = @"http://sevgilezzeti.com/Admin/yemekresimkapak/";
                combined = [NSString stringWithFormat:@"%@%@", imagePathKapak, gelenYemekAdi];
                [resimIsimleri addObject:combined];
            }
        }
    }
    _TarifAdi=yemekIsimleri;
    _ResimAdi=resimIsimleri;
}
///////////////////////////////////////////////////////////////////////////////////////
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    TableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"TableViewCell" forIndexPath:indexPath];
       NSUInteger row = [indexPath row];
    cell.TitleLabel.text = _TarifAdi[row];
    NSCache *_imageCache;
    UIImage *image = [_imageCache objectForKey:@"DenemeRes"];
    if (image == nil) {
        NSData *data = [NSData dataWithContentsOfURL:[NSURL URLWithString:_ResimAdi[row]]];
        image = [UIImage imageWithData:data];
        [_imageCache setObject:image forKey:@"DenemeRes"];
    }
    cell.ThumbImage.image = image;
    return cell;
}
I can get images from URL and can see images but when I scroll the table view, it's very slow and lagging. How can I fix this problem ?