web-dev-qa-db-fra.com

Méthodes déléguées UITableView

J'ai besoin d'une méthode déléguée UITableView qui doit être appelée à partir d'une autre fonction au moment de la compilation ... existe-t-il des méthodes déléguées UITableView par défaut que je peux utiliser? Sinon, veuillez commenter comment ajouter une méthode de délégué supplémentaire en plus des méthodes existantes.

Merci d'avance

19
D_D

Assurez-vous de définir UITableview Délégué dans les deux sens - à partir de NIB ou par programmation

en utilisant NIB Depuis Nib: -

enter image description here

Programmé: - enter image description here

ensuite:-

-(void)viewWillAppear:(BOOL)animated
{
         tblService.delegate=self;
         tblService.dataSource=self;
         [super viewWillAppear:YES];
}

Utilisez les délégués suivants:

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
    return 1;    //count of section
}


- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {

    return [catagorry count];    //count number of row from counting array hear cataGorry is An Array
}



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

        UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:MyIdentifier];

        if (cell == nil)
        {
            cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault
                                           reuseIdentifier:MyIdentifier] autorelease];
        }

        // Here we use the provided setImageWithURL: method to load the web image
        // Ensure you use a placeholder image otherwise cells will be initialized with no image
        [cell.imageView setImageWithURL:[NSURL URLWithString:@"http://example.com/image.jpg"]
                       placeholderImage:[UIImage imageNamed:@"placeholder"]];
            cell.textLabel.text = @"My Text";
        return cell;
    }

Below use for set height of cell

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{

        return 80;

}

Below use for gatting particular cells data by selecting row this method called

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{

        Yourstring=[catagorry objectAtIndex:indexPath.row];      

       //Pushing next view 
        cntrSecondViewController *cntrinnerService = [[cntrSecondViewController alloc] initWithNibName:@"cntrSecondViewController" bundle:nil];
        [self.navigationController pushViewController:cntrinnerService animated:YES];

}
39
Nitin Gohel

Je ne sais pas si cette méthode existe mais si vous avez besoin d'autres méthodes dans un délégué UITableView vous pouvez créer une nouvelle catégorie de UITableViewDelegate.

4
NSStudent