Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8653887
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T14:39:02+00:00 2026-06-12T14:39:02+00:00

I have created a class to generate tickets and when the ticket is generated

  • 0

I have created a class to generate tickets and when the ticket is generated I want to show it in the table view one by one.
I have created a protocol for that class and once the ticket is prepared I send a message to its delegate which is tableView to reload the table view.
when the reload method is called on the tableView - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section is being called every time a new ticket is generated but the
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath is not being called every time the ticket is generated but once all the tickets are generated it is being called

below is the code

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    if (self.ticketGenerator == nil) {
        return 0;
    }
    else{
        return self.ticketGenerator.ticketNumbers.count;
    }
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *CellIdentifier = @"Cell";
    HSEticketView *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if (cell == nil) {
        cell = [[HSEticketView alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
        [cell Tickets:[self.ticketGenerator.ticketNumbers objectAtIndex:indexPath.row]];
    }

    // Configure the cell...

    return cell;
}

//to increase the height of the cell

- (CGFloat)tableView:(UITableView *)aTableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
    return 135;
}

-(void)background
{
    [self.ticketGenerator GenerateNoOfTickets:[self.enteredNo.text intValue]:self];
}


- (IBAction)done:(id)sender {
    [self.enteredNo resignFirstResponder];
    self.enteredNo.hidden = YES;
    self.label.hidden = YES;
    self.button.hidden = YES;
    self.tableView.hidden = NO;

    [self performSelectorInBackground:@selector(background) withObject:nil];
        NSLog(@"dgf");

}

#pragma ticketGenrate delgate methods

-(void)generationOfTicketCompleated
{
    [self.tableView reloadData];


}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-12T14:39:04+00:00Added an answer on June 12, 2026 at 2:39 pm

    All changes to the UI must be done on the main thread. If you execute

    [self.ticketGenerator GenerateNoOfTickets:...]
    

    on a background thread and (as I assume) that functions calls

    [tableView insertRowsAtIndexPaths:...]
    

    that will not work, because insertRowsAtIndexPaths must be called on the main thread.

    If you want to update the table view from a background thread, you can for example do

    dispatch_async(dispatch_get_main_queue(), ^{
        add item to data source array ...;
        [tableView insertRowsAtIndexPaths:...];
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have created a UML diagram and generated a class by using Generate Code
I have created a class which extends View class. public class SplashScreen extends View
I have created a class called Class1, and in another module, I want to
I have created one class as public class FormActivity extends Activity { TextView tv
I am creating some multi-threaded code, and I have created a JobDispatcher class that
I have three packages in NetBeans 6.7 that i want to generate a UML
I have created a set of templates that I want to share across multiple
I am following the guide at http://guides.rubyonrails.org/association_basics.html and I have created class Customer <
I have created a class which extends Gallery. There is no onCreate() method in
I have created a class for fetching server-side data in my iOS-App, based on

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.