1

我想创建一个 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];

创建此类的实例时,我还需要做些什么来初始化每个变量吗?我错过了什么吗?

4

1 回答 1

2

这就是您想要用于存储数据的自定义对象所需的全部内容。

当然,当您使用它时(在 中SomeViewController),您需要在开始设置变量之前实际创建类的实例:

self.newDataClass = [[MyDataClass alloc] init];

除非你有理由不这样做,否则我也会使用self.newDataClass而不是仅仅使用。newDataClass

于 2013-05-10T00:40:46.280 回答