gpt4 book ai didi

iphone - 错误 : @synthesize

转载 作者:太空狗 更新时间:2023-10-30 03:57:57 25 4
gpt4 key购买 nike

在我的 AppDelegate.h 文件中,我编写了以下代码

@interface iBountyHunterAppDelegate : NSObject <UIApplicationDelegate> {
UITabBarController *tabcontroller;

}
@property (nonatomic,retain) IBOutlet UITabBarController *tabcontroller;

在 AppDelegate.h 文件中我综合了它。

@synthesize tabcontroller;

但是在@synthesize 行我得到一个错误消息是:“属性实现声明缺少上下文”

谁能告诉我怎么解决?

最佳答案

我怀疑您将 @synthesize 放在了您的@implementation 之外。它应该看起来像这样

//  iBountyHunterAppDelegate.m

#import "iBountyHunterAppDelegate.h"

@implementation iBountyHunterAppDelegate

@synthesize tabcontroller; // note that this is between @implementation and @end

// other stuff

@end

关于iphone - 错误 : @synthesize,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6980378/

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