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

4

1 に答える 1

0

それを追加する必要があります:

@property (nonatomic, retain) NSString *extra;

あなたのEighthViewController.hファイルに。そして、次を追加します。

@synthesize extra;

あなたのEighthViewController.mファイルに。通常は動作するはずです

それが役に立てば幸い

于 2013-08-03T22:48:49.533 に答える