1

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

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

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

-(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。

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

4

1 回答 1

0

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

DetailViewController

@property (nonatomic) NSMutableString * nid;

在您呈现之前分配它:

DetailViewController *detail = [self.storyboard instantiateViewControllerWithIdentifier:@"detail"];
detail.nid = [arrayOfNids objectAtIndex:rowNumber];
[self.navigationController pushViewController:detail animated:YES];
于 2013-04-22T06:04:22.420 回答