gpt4 book ai didi

ios - warning "Class implementation may not have super class"的含义

转载 作者:可可西里 更新时间:2023-11-01 03:40:47 24 4
gpt4 key购买 nike

我创建了一个非常基本的 Objective-C 类。

我的类.h

@interface MyClass: NSObject
@end

MyClass.m

#import "MyClass.h"
@interface MyClass()
@end

@implementation MyClass: NSObject {
NSMutableArray* _myArray;
}
@end

Xcode 在 @implementation 行显示以下警告:

Class implementation may not have super class

如果我删除 NSMutableArray* _myArray; 行,警告就会消失。

这个警告是什么意思?我做错了什么?

最佳答案

删除implementation部分的NSObject。仅需在 interface 中指定父类(super class)。

@implementation MyClass {
NSMutableArray* _myArray;
}
@end

关于ios - warning "Class implementation may not have super class"的含义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35033650/

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