2 votes

UITableView utiliser plist faire un bouton pervers et suivant ?

J'utilise UITableView avec plist pour faire une tableview, alors comment faire un bouton pervers/suivant dans la DetailView (sans revenir à la tableview et appuyer sur l'élément suivant) ?

Le programme :

- (void)viewDidLoad
{
    [super viewDidLoad];
    NSMutableDictionary *labelDict = [[[NSMutableDictionary alloc]initWithContentsOfFile:[[[NSBundle mainBundle]bundlePath]stringByAppendingPathComponent:@"myData.plist"]] retain];
    cellImages = [[NSMutableArray alloc ] initWithArray:[labelDict objectForKey:@"image"]];
    cellTitles = [[NSMutableArray alloc] initWithArray:[labelDict objectForKey:@"title"]];
    cellSubTitles = [[NSMutableArray alloc] initWithArray:[labelDict objectForKey:@"subtitle"]];

    NSLog(@"%@", [[[NSBundle mainBundle] bundlePath]stringByAppendingPathComponent:@"myData.plist"]);

}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *CellIdentifier = @"Cell";

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if (cell == nil) {
        cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
        cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
    }

    // Configure the cell.

    cell.textLabel.text = [cellTitles objectAtIndex:indexPath.row];
    cell.detailTextLabel.text = [cellSubTitles objectAtIndex:indexPath.row];
    cell.imageView.image = [UIImage imageNamed:[cellImages objectAtIndex:indexPath.row]];
    return cell;
}

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
    if (!self.detailViewController) {
        self.detailViewController = [[[DetailViewController alloc] initWithNibName:@"DetailViewController" bundle:nil] autorelease];
    }

    [self.navigationController pushViewController:self.detailViewController animated:YES];
    self.detailViewController.detailImage.image = [UIImage imageNamed:[cellImages objectAtIndex:indexPath.row]];
    self.detailViewController.detailDescriptionLabel.text = [cellTitles objectAtIndex:indexPath.row];
    self.detailViewController.subTitle.text = [cellSubTitles objectAtIndex:indexPath.row];
    self.detailViewController.title = nil;
}

0voto

NeverBe Points 4267

Passez les tableaux de données et l'index courant au contrôleur de la vue détaillée. Ajoutez des actions aux boutons qui sélectionneront l'enregistrement courant à payer.

Prograide.com

Prograide est une communauté de développeurs qui cherche à élargir la connaissance de la programmation au-delà de l'anglais.
Pour cela nous avons les plus grands doutes résolus en français et vous pouvez aussi poser vos propres questions ou résoudre celles des autres.

Powered by:

X