1

我正在尝试在我的项目中实现 MWPhotoBrowser。我已经添加了所有代表,但它仍然不会显示照片。

这是我的 didSelectRowAtIndexPath:

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
  [self performSegueWithIdentifier:@"MWPhotoBrowserSegue" sender:self] 
}

这是我的segue方法:

- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
{
   if ([segue identifier] isEqualToString:@"MWPhotoBorwserSegue"]) 
   {
       photoBrowser = [[MWPhotoBrowser alloc]initWithDelegate:self]; 
       UINavigationController * nc = [[UINavigationController alloc]initWithRootViewController:photoBrowser]; 

      nc.modalTransitionStyle = UIModalTransitionStyleCrossDisolve; 

      [photos addObject:[MWPhoto photoWithImage:[UIImage imageNamed:@"picasa.jpg"]]; 

      [photoBrowser setCurrentPhotoIndex:0]; 

      [self.navigationController presentViewController:nc animated:YES completion:nil]; 
   }
}

#ofPhotosInBrowser:

-(NSUInteger)numberOfPhotosInPhotoBrowser:(MWPhotoBrowser *)photoBrowser 
{
    return self.photos.count;
}

照片AtIndex:

- (MWPhoto *)photoBrowser:(MWPhotoBrowser *)photoBrowser photoAtIndex:(NSUInteger)index {
if (index < self.photos.count)
    return [self.photos objectAtIndex:index];
return nil;
}

这是我在调用 didSelectRowAtIndexPath: 后得到的: 在此处输入图像描述 编辑解决方案:

MWPhotoBrowser 不会显示照片,除非您将 self.title 放在 initWithStyle: 方法中。我也忘了添加 viewWillDisappear 和 viewWillAppear

4

2 回答 2

0

我认为你需要调用重新加载数据。检查 Mwphotobrowser.h 以了解正确的方法。

于 2013-12-22T08:57:43.363 回答
0

试试这个 [[NSOperationQueue mainQueue] addOperationWithBlock:^{ [self presentViewController:yourNewNavigationController animated:YES completion:nil]; }];

于 2015-01-15T05:01:22.700 回答