//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;
Whenever I try and use this code (from here) I get an error in the FirstViewController saying: Property 'extra' not found on object of type 'EighthViewController *'