UITableView到UICollectionView,而没有调用prepareForSegue

时间:2013-12-07 14:10:22

标签: ios objective-c uitableview uicollectionview

我还是有点新手;所以要温柔。 我想从flickr下载一个setlist,然后选择以下设置并查看其图片。 Sp远我已经签订了获得入围名单的方法。现在我希望能够单击其中一个设置列表并移至UICollectionsView并查看其图像。我需要帮助才能选择UITableView中的行。 我想我在某个地方错过了一步,但似乎找不到我错过的洞。

无论如何这里是代码

- (void)viewDidLoad
{
    [super viewDidLoad];

self.tableView.rowHeight = 44;
photoURLs = [[NSMutableArray alloc] init];
photoSetNames = [[NSMutableArray alloc] init];
photoids = [[NSMutableArray alloc] init];
[self loadFlickrPhotos];

}
- (void)loadFlickrPhotos
{
// 1. Build your Flickr API request w/Flickr API key in FlickrAPIKey.h
NSString *urlString = [NSString stringWithFormat:@"http://api.flickr.com/services/rest/?method=flickr.photosets.getList&api_key=%@&user_id=%@&per_page=10&format=json&nojsoncallback=1", FlickrAPIKey, @"62975213@N05"];
NSURL *url = [NSURL URLWithString:urlString];
// 2. Get URLResponse string & parse JSON to Foundation objects.
NSString *jsonString = [NSString stringWithContentsOfURL:url encoding:NSUTF8StringEncoding error:nil];
//    NSDictionary *results = [jsonString JSONValue];
NSDictionary *results = [NSJSONSerialization JSONObjectWithData:[jsonString dataUsingEncoding:NSUTF8StringEncoding] options:0 error:nil];
// 3. Pick thru results and build our arrays
NSArray *photosets = [[results objectForKey:@"photosets"] objectForKey:@"photoset"];
for (NSDictionary *photoset in photosets) {
    // 3.a Get title for e/ photo
    NSString *title = [[photoset objectForKey:@"title"] objectForKey:@"_content"];
    [photoSetNames addObject:(title.length > 0 ? title : @"Untitled")];
    NSString *photoid = [photoset objectForKey:@"id"];
    [photoids addObject:photoid];

}
}
-(void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender{
if([segue.identifier isEqualToString:@"viewGallery"]){
    flickrGalleryViewController *controller = (flickrGalleryViewController *)segue.destinationViewController;
    NSIndexPath *indexPath = [self.tableView indexPathForSelectedRow];
    controller.photoids = [photoids objectAtIndex:indexPath.row];
    NSLog(@"photoid = %@", controller.photoids);
}
}

#pragma mark - Table view data source

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
// Return the number of rows in the section.
 return [photoSetNames count];
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewCell *cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"Cell Identifier"];
cell.textLabel.text = [photoSetNames objectAtIndex:indexPath.row];
return cell;

}

1 个答案:

答案 0 :(得分:6)

如果要在表视图中按行后按/显示新视图,则需要实现tableView:didSelectRowAtIndexPath:method:

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
    // Present new view here
}
每次按行时,表视图都会调用

didSelectRowAtIndexPath:方法。 您可以使用它来处理行按事件,也可以通过故事板进行处理。在故事板中,您可以控制从表视图行拖动到其他视图控制器以设置segue,在这种情况下,您甚至不需要使用didSelectRowAtIndexPath:方法,prepareForSegue:如果您需要在视图控制器之间传递一些数据就足够了。另一种方法是控制从表视图控制器(不是行)拖动到另一个视图控制器。在这种情况下,您需要以某种方式调用此segue。我相信你会以第二种方式设置你的segue。 要在按行时调用它,请将此行添加到didSelectRowAtIndexPath:方法,将以上代码中的注释替换为:

[self performSegueWithIdentifier:@"YOURSEGUENAMEFORMSTORYBOARD" sender:nil]

// EXTENDED

如果要将数据传递到其他视图,可以使用第二个参数 - sender。您可以在那里传递require对象或任何其他对象,例如:

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
    {
        //I pass NSIndexPath to prepare for segue
        [self performSegueWithIdentifier:@"YOURSEGUENAMEFORMSTORYBOARD" sender: indexPath]
    }

在prepareForSeque:方法中,您可以检索此对象并使用它:

-(void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender{
    if([segue.identifier isEqualToString:@"viewGallery"]){
        flickrGalleryViewController *controller = (flickrGalleryViewController *)segue.destinationViewController;
        // HERE I retrieve index path from parameter
        NSIndexPath *indexPath = (NSIndexPath*)sender;
        controller.photoids = [photoids objectAtIndex:indexPath.row];
        NSLog(@"photoid = %@", controller.photoids);
    }
}

这是一个可以满足您需要的例子。