popToRootViewController に問題があります。ルート ビュー A とテーブル ビュー B があります。テーブル ビューで行が選択されると、文字列に応じてルート ビューに文字列が返されます。Aのボタンのタイトルを変更します。
これの非常に単純なバージョンを作成し、次のリンクで gitHub に配置しました: https://github.com/spennyf/didSelect_test。シミュレーターの電話で実際にこれを実行するまで説明するのが非常に難しいため、これを行っています。そしてフラッシュを見る。なぜそれが起こっているのか、それを修正する方法はわかりません。以下のコードのほとんども投稿しますが、フラッシュを自分で見ることができれば、問題の説明に役立つと思います。コードは次のとおりです。
viewControllerA.h
#import <UIKit/UIKit.h>
@interface ViewController : UIViewController
@property (strong, nonatomic) IBOutlet UIButton *btn1;
@property (strong, nonatomic) IBOutlet UIButton *btn2;
@property (strong, nonatomic) IBOutlet NSString *object;
@end
viewControllerA.m
#import "ViewController.h"
@interface ViewController ()
@end
@implementation ViewController
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
}
- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
-(void)viewWillAppear:(BOOL)animated {
NSLog(@"object: %@", _object);
if ([_object isEqualToString:@"object1"]) {
[_btn1 setTitle:@"new1" forState:UIControlStateNormal];
}
if ([_object isEqualToString:@"object2"]) {
[_btn2 setTitle:@"new2" forState:UIControlStateNormal];
}
}
@end
tableviewB.m
#import "TableViewController.h"
#import "ViewController.h"
@interface TableViewController () {
NSMutableArray *_objects;
}
@end
@implementation TableViewController
- (void)viewDidLoad
{
[super viewDidLoad];
_objects = [[NSMutableArray alloc] init];
NSDictionary *obj1 = [[NSDictionary alloc] initWithObjectsAndKeys:@"object1", @"title", nil];
NSDictionary *obj2 = [[NSDictionary alloc] initWithObjectsAndKeys:@"object2", @"title", nil];
// NSDictionary *obj3 = [[NSDictionary alloc] initWithObjectsAndKeys:@"rpi", @"title", nil];
[_objects addObject:obj1];
[_objects addObject:obj2];
}
#pragma mark - Table view data source
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
// Return the number of sections.
return 1;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
// Return the number of rows in the section.
return _objects.count;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier];
cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
}
//NSLog(@"%@", _objects);
cell.textLabel.text = [[_objects objectAtIndex:indexPath.row] objectForKey:@"title"];
return cell;
}
-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
ViewController *myController = (ViewController *)[self.navigationController.viewControllers objectAtIndex:0];
myController.object = [[_objects objectAtIndex:indexPath.row] objectForKey:@"title"];
[self.navigationController popToRootViewControllerAnimated:YES];
}
@end
再び助けてくれてありがとう。