gpt4 book ai didi

ios - uiviewcontroller 没有从 ios 中的父类导入

转载 作者:行者123 更新时间:2023-11-29 02:52:55 25 4
gpt4 key购买 nike

我有以下父类:

//GAViewController.h
@interface GAViewController : UIViewController

@end

//GAViewController.m
#import "GAViewController.h"
#import "GAConfigs.h"

@interface GAViewController ()

@end

@implementation GAViewController

@end

我有以下子类,它像这样实现父类:

// GARegisterLoginViewController.h
#import "GAViewController.h"

@interface GARegisterLoginViewController : GAViewController

@end


//GARegisterLoginViewController.m
#import "GARegisterLoginViewController.h"

@interface GARegisterLoginViewController ()

@end

@implementation GARegisterLoginViewController
// I cannot reference GAConfigs.h in the methods here
@end

我的configs 文件是这样的:

#ifndef GAConfigs_h
#define GAConfigs_h

//Segues
#define LOGINREGISTER_TO_REGISTER_SEGUE @"loginregisterToRegisterSegue"
#define LOGINREGISTER_TO_LOGIN_SEGUE @"loginregisterToLoginSegue"

#endif

问题出在 GARegisterLoginViewController.m 中。我不能在子类中引用 GAConfigs,即使它是在父类中导入的。

有人知道我做错了什么吗?

最佳答案

您正在将文件导入到实现文件 (.m) 中。

如果您将该文件移动到头文件 (.h),它将被正确继承。

关于ios - uiviewcontroller 没有从 ios 中的父类导入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24274413/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com