一 OC类的声明和实现
1.接口的声明
@interface NewClassName: ParentClassName { 实例变量 ... } 方法的声明 ... @end
2.类的实现
@implementation NewClassName { 方法的实现 //code ... } @end
时间: 2024-10-11 12:42:40
一 OC类的声明和实现
1.接口的声明
@interface NewClassName: ParentClassName { 实例变量 ... } 方法的声明 ... @end
2.类的实现
@implementation NewClassName { 方法的实现 //code ... } @end