//FirstViewController.m
#import "EighthViewController.h"
EighthViewController *able = [[EighthViewController alloc] initWithNibName:@"EighthViewController" bundle:nil];
able.extra = @"dd"; //ERROR HERE----------------
[self presentViewController:able animated:YES completion:NULL];
//EighthViewController.h
@interface EighthViewController : UIViewController{
NSString *extra;
}
@property (nonatomic) NSString *extra;
每当我尝试使用此代码(从这里)时,我在 FirstViewController 中收到错误消息:Property 'extra' not found on object of type 'EighthViewController *'