. (, FirstViewController) :
NSArray *_fields;
@property:
@property (readonly) NSArray *fields;
.m @synthesize:
@synthesize fields = _fields;
(, SecondViewController) , :
FirstViewController *_controller;
@property(nonatomic, retain) FirstViewController *controller;
.m :
@synthesize controller = _controller;
, . .
FirstViewController *first = [[FirstViewController alloc] init];
SecondViewController *second = [[SecondViewController alloc] init];
second.controller = first;
second.controller.fields UITextField .