我是 Objective-C 的新手,我很菜鸟。我正在尝试将文本从 a传递UITextField
到. 我现在拥有的是:SecondViewController
FirstViewController
(SecondViewController.h)
@interface SecondViewController : UIViewController <UITextFieldDelegate>
@property (weak, nonatomic) IBOutlet UITextField *PrimaryPhone;
@end
(FirstViewController.m)
#import "SecondViewController.h"
@interface FirstViewController ()
@end
@implementation FirstViewController
@synthesize PrimaryPhone;
然后是 .m 文件中包含的其他默认项。
但它说:
@synthesize PrimaryPhone;
Xcode 给了我标题中的错误。(属性实现必须在接口“FirstViewController”中声明)