我正在尝试使用 segue 将数据传回,并遵循以下答案:How to Pass information Back in iOS when reversing a Segue?
但是,当我尝试将此行放入时:
@property (nonatomic) id<MyDataDelegate> delegate;
我收到以下警告:
当我尝试像这样放入第一个视图控制器时:
@interface ContainerViewController : UIViewController <MyDataDelegate>
我收到错误“ Cannot find protocol declaration for 'MyDataDelegate'
”并且我确实包含了另一个头文件......