我想创建一个 NSObject 类,我可以使用它的实例并将其保存到其变量中,然后将其数据传递到其他地方(NSManagedObject)。除了创建一个继承自 NSObject. 在 .h 中创建变量并在 .m 中合成。
即:我的 .h 文件:
#import <Foundation/Foundation.h>
@interface MyDataClass : NSObject
@property (nonatomic, retain) NSNumber *variable1
@property (nonatomic, retain) NSString *variable2
@property (nonatomic, retain) NSDate *variable3
@end
.m 文件:
#import "MyDataClass.h"
@implementation MyDataClass
@synthesize variable1, variable2, variable3
@end
我希望能够在一些 SomeViewController 中执行以下操作:
@property (nonatomic, strong) MyDataClass *newDataClass
@systhesize newDataClass;
newDataClass.variable1 = @"123457890";
newDataClass.variable2 = @"This is the new Variable";
newDataClass.variable3 = [NSDate date];
创建此类的实例时,我还需要做些什么来初始化每个变量吗?我错过了什么吗?