//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 *'