Please do not post the same thing multiple times. The board software automatically flags certain posts as needing moderator attention. This happens the most often for new users. I'm pretty sure this is made clear at the time you attempt to post. Posting the same thing over and over again just makes that many more posts the moderators have to weed through later. This makes us sad. Don't make us sad. If your post/thread doesn't appear, just wait a while. Don't post it again. If it hasn't shown up by the next day, then you can try again. I normally go through posts in the mornings, and try to check a few times throughout the day, but I'm not here 24/7. There will typically be a significant delay before posts are approved. Just be patient.
Trouble Adding Cells to TableView
I have a button on 1 page and a tableView on another page. When the button is pressed, i want it to add a cell to the tableView, and when i switch pages to see the tableView, i want that new cell there. But my button doesnt add the cell to my table. Here is the code for the button:
- (IBAction)outlet1:(id)sender {
[cart.cells addObject:@\"1\"];
[cart.myTableView reloadData];
}
cart is refering to the second page with the tableView. And `cells` is my MutableArray on the tableView page. I also call
[myTableView reloadData];
in the viewWillAppear method on the tableView page. However, i cant see my cell. Can someone help please?
0 •