I want to maintain the tableview value even if I make a screen transition.

Asked 2 years ago, Updated 2 years ago, 44 views

I am creating an application for iOS with Objective-c.
Using the Navigation Controller, we create a program that transitions between screens 1 and 2.
On screen 2, use the + button to add values to Tableview.
At this time, if you transition to screen 1, all Tableview values will be cleared on screen 2.
In this case, how can I keep the Tableview value on screen 2?

ios objective-c

2022-09-30 11:26

1 Answers

For the time being, why don't you use Navigation Controller class variables easily?

In NavigationController.h, click

@property(nonatomic)NSInteger count;

As a , from View Controller hanging from this Navigation Controller, etc.,

NavigationController*nc=(NavigationController*)self.navigationController;
NSInteger count = nc.count;//read
nc.count = count +100; // write

can read and write.


2022-09-30 11:26

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.