0

AddNotesViewControllerDetailsOfPeopleViewController.

我想做的就是我们在UITextView1 个班级中输入的任何内容,应该在UILabel另一个班级中显示。

在文件中AddNotesViewController.h

   UITextView *txtView;

  @property(nonatomic,retain)IBOutlet     UITextView *txtView;

在文件中AddNotesViewController.m

 @synthesize txtView;

之后,当我单击选项卡栏项目“保存”时,它应该保存在数据库中,它保存到数据库并显示值,但它没有将值传递给

DetailsOfPeopleViewController.

- (void)tabBar:(UITabBar *)tabBar didSelectItem:(UITabBarItem *)item{

        NSLog(@"Tabbar selected itm %d",item.tag);

       switch (item.tag) {
          case 0:

         appDelegate = (AppDelegate *)[[UIApplication sharedApplication] delegate];


        NotesTable *crashNotInvolvingObj11 = (NotesTable *)[NSEntityDescription       
    insertNewObjectForEntityForName:@"NotesTable" inManagedObjectContext:[appDelegate    managedObjectContext]];

        // CameraViewController *camera=[[CameraViewController alloc] init];
            crashNotInvolvingObj11.personNote=[NSString    stringWithFormat:@"%@",txtView.text];

        DetailsOfPeopleViewController *detail=[DetailsOfPeopleViewController alloc];
        detail.testPersonNotesStr  =[NSString stringWithFormat:@"%@",txtView.text];
        //(value of testPersonNotesStr is DISPLYING here... )
        [appDelegate saveContext];
        [detail release];

        break;
        ..................

     }

DetailsOfPeopleViewController.h

    NSString *testPersonNotesStr;
    UILabel *PersonNotesLbl;

     @property(nonatomic,retain)IBOutlet UILabel *PersonNotesLbl;
     @property(nonatomic,retain) NSString *testPersonNotesStr;

DetailsOfPeopleViewController.m

       @synthesize PersonNotesLbl;
       @synthesize  testPersonNotesStr;



      - (void)viewDidLoad
      {
         [super viewDidLoad];
            [PersonNotesLbl setText:testPersonNotesStr];

         NSLog(@"PERSON NOTE is........ %@",testPersonNotesStr);
           //(value of testPersonNotesStr is NOT DISPLYING here..... )

        }

请指导我在哪里做错了。

4

3 回答 3

0

您将其设为属性,因此可能尝试使用 set 方法。此外,您需要在设置值之前初始化 ViewControlelr。所以:

DetailsOfPeopleViewController *detail=[[DetailsOfPeopleViewController alloc] init];
[detail setTestPersonNotesStr:[NSString stringWithFormat:@"%@",txtView.text]];

而且我看不到您实际显示此视图的位置,您必须显示此视图的相同实例才能实际看到该值。

于 2012-11-28T10:33:59.463 回答
0

使用委托传递值使用此参考

于 2012-11-28T10:35:13.850 回答
0

只需在你的代码中做几件事你就会得到你的字符串

1 :->

全局声明您的 DetailsOfPeopleViewController 。

即在.h

DetailsOfPeopleViewController *detail  

2:->

在你的 viewDidLoad 中分配它在内存中

detail=[[DetailsOfPeopleViewController alloc] init];  

3:->

只需声明要复制的字符串属性

@property(nonatomic,copy) NSString *testPersonNotesStr;  

或者

您可以使用 NSUserDefault 发送数据

设定值

NSUserDefaults * defaults = [NSUserDefaults standardUserDefaults];
[defaults setObject:[NSString stringWithFormat:@"%@",txtView.text]; forKey:@"testPersonNotesStr"];
[defaults synchronize];

获取值

testPersonNotesStr = [[NSUserDefaults standardUserDefaults] objectForKey:@"testPersonNotesStr"];
NSLog(@"PERSON NOTE is........ %@",testPersonNotesStr);  

按照我的回答,我在 addViewController 中有 NSString 值,我想在 DetailsViewController 的 UILabel 中显示这个值

于 2012-11-28T13:23:54.703 回答