子窗口

// header file

@property (nonatomic, copy) NSString *example;

// .m file
@synthesize example;
父窗口
// when you create the object
NewItemController *item = [[NewItemController alloc] init];
item
.example = @"example string data";

相关文章:

  • 2021-10-20
  • 2021-12-11
  • 2021-08-04
  • 2021-11-05
  • 2021-12-19
  • 2022-12-23
猜你喜欢
  • 2021-05-20
  • 2022-12-23
  • 2021-11-28
  • 2022-12-23
  • 2021-07-13
  • 2021-07-04
相关资源
相似解决方案