有谁知道为什么在 FirstViewController 中导入 SecondViewController.h 后仍无法识别声明?
这是 SecondViewController.h 中的代码
@property (nonatomic, copy) NSString *query;
我正在尝试在 FirstViewController 中使用它。但这给了我错误-
#import "FirstViewController.h"
#import "SecondViewController.h"
-(IBAction)searchButtonPressed:(id)sender {
FirstViewController *viewController = [[FirstViewController alloc] initWithNibName:@"ViewController" bundle:nil];
viewController.query = [NSString stringWithFormat:@"%@",
search.text];
[[self navigationController] pushViewController:viewController
animated:YES];
[viewController release];
}
无法识别“查询”。即使在 FirstViewController 的实现文件中导入了 SecondViewController.h。