在 AppDelegate 中为两个视图控制器使用和更新 NSMutableString

Posted

技术标签:

【中文标题】在 AppDelegate 中为两个视图控制器使用和更新 NSMutableString【英文标题】:Using and updating a NSMutableString in AppDelegate for two viewcontrollers 【发布时间】:2013-04-22 05:58:57 【问题描述】:

我的 AppDelegate.h 文件中定义了一个 NSMutableString。

//AppDelegate.h
@interface AppDelegate : UIResponder <UIApplicationDelegate>
  @public
    NSMutableString *nidForDetailDisplay;

然后我在我的 ViewController.m 文件中设置这个字符串。我正在存储一个字符串 (nidForDetailDisplay) 以从 tableview 传递到 detailview。

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

  rowNumber = indexPath.row;

  AppDelegate *appDelegate = [[UIApplication sharedApplication] delegate];
      // this is where I set the string to a string of text
    appDelegate->theNidForDetailDisplay = [arrayOfNids objectAtIndex:rowNumber];

  UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];
  UIViewController *detailViewController;

  DetailViewController *detail = [self.storyboard instantiateViewControllerWithIdentifier:@"detail"];

  [self.navigationController pushViewController:detail animated:YES];

 

在 ViewController 中,当我记录 theNidForDetailDisplay 时,我得到了正确的字符串。

接下来,我尝试在后续的 DetailViewController 中访问这个更新后的 NSMutableString (nidForDetailDisplay)

-(void)viewWillAppear:(BOOL)animated 

[super viewWillAppear:animated];

 NSMutableString *storyid;

 AppDelegate *appDelegate = [[UIApplication sharedApplication] delegate];        
 appDelegate->theNidOnDetailDisplay = storyid;
 

但是,当我打印字符串 (storyid) 或 (theNidOnDetailDisplay) 时,它们都返回 null。

我在这里遗漏了什么吗?我应该使用实例变量吗? 提前致谢。

【问题讨论】:

【参考方案1】:

不要使用您的 AppDelegate 来传递数据。将属性添加到详细视图控制器并将值分配给该属性。

DetailViewController:

@property (nonatomic) NSMutableString * nid;

在你呈现之前分配它:

DetailViewController *detail = [self.storyboard instantiateViewControllerWithIdentifier:@"detail"];
detail.nid = [arrayOfNids objectAtIndex:rowNumber];
[self.navigationController pushViewController:detail animated:YES];

【讨论】:

谢谢,我没有意识到我能做到。

以上是关于在 AppDelegate 中为两个视图控制器使用和更新 NSMutableString的主要内容,如果未能解决你的问题,请参考以下文章

更新 appDelegate 中的变量

导航控制器在第二个视图控制器中为零

是否可以在 iOS 中为两个视图控制器应用两种导航颜色

UITabBar 自定义背景图像应用于一个视图控制器而不是 AppDelegate

从 AppDelegate、Swift 导航到 TabBarController 内的特定视图控制器

Swift - 在 AppDelegate 中实例化视图控制器