如何将整数传递给模型类

时间:2012-04-12 10:29:33

标签: cocoa properties integer

我遇到这个问题有点麻烦!我肯定看过很多帖子,但无法让它发挥作用。以前在我的应用程序中,我已经设法通过将类分配给属性来在类之间传递数据。我不知道我在哪里出错了,所以任何帮助都会受到赞赏。我知道下面的代码不是很好,我正在寻找字典来帮助,但是现在我想让它工作。

- (IBAction)checkAnswers:(id)sender
{
// The following if statements check user input and checks to see if it is the right answer.
// The .text parts are uitextfield properties and then shows an image of a tick if correct.
// It then assigns one to a variable and sums them up at the end (blag)    
if ([eyepiece.text isEqualToString:@"Eyepiece"]) {
    UIImage *image = [UIImage imageNamed:@"Tick.png"];
    [eyepieceTick setImage:image];
    a = 1;
}

if ([focussingKnobs.text isEqualToString:@"Focussing knobs"]) {
    UIImage *image = [UIImage imageNamed:@"Tick.png"];
    [focussingTick setImage:image];

    b = 1;
}

if ([objectiveLens.text isEqualToString:@"Objective lenses"]) {
    UIImage *image = [UIImage imageNamed:@"Tick.png"];
    [objectiveTick setImage:image];
    c = 1;
}

if ([stage.text isEqualToString:@"Stage"]) {
    UIImage *image = [UIImage imageNamed:@"Tick.png"];
    [stageTick setImage:image];
    d = 1;
}
if ([mirror.text isEqualToString:@"Mirror"]) {
    UIImage *image = [UIImage imageNamed:@"Tick.png"];
    [mirrorTick setImage:image];
    e = 1;
}

blag = a + b + c + d + e;

// Here I update a label with the score    

finalScore = [[NSString alloc] initWithFormat:@"%D", blag];
[score setText:finalScore];

// This is probably where I'm going wrong.  I'm allocating a model class called 
// Level_3_Brain and trying to assign a new property in that class (cellsLevelThree) 
// with the score.   

// Level_3_Brain *level = [[Level_3_Brain alloc] init];
// level.cellsLevelThree = blag;

// Updated to
    [Level_3_Brain sharedInstanceOfLevel3].cellsLevelThree = blag;


// I then set them all back to zero so that the score doesn't go above 5 
a = 0, b = 0, c = 0, d = 0, e = 0; 
blag = 0;

}

我的模特课.h现在有:

@interface Level_3_Brain : NSObject 

+ (id)sharedInstanceOfLevel3;

@property (nonatomic) int cellsLevelThree;

@end

我的.m现在的代码来自Singleton文章:

@implementation Level_3_Brain
@synthesize cellsLevelThree;

static Level_3_Brain *sharedInstanceOfLevel3 = nil;

// Get the shared instance and create it if necessary.
+ (Level_3_Brain *)sharedInstanceOfLevel3 {
if (sharedInstanceOfLevel3 == nil) 
{
sharedInstanceOfLevel3 = [[super allocWithZone:NULL] init];
}



return sharedInstanceOfLevel3;


}

// We can still have a regular init method, that will get called the first time the Singleton is used.

- (id)init
{
self = [super init];

if (self) {
    // Work your initialising magic here as you normally would
}

NSLog(@"%@", cellsLevelThree);

return self;
}

// Your dealloc method will never be called, as the singleton survives for the duration of your app.
// However, I like to include it so I know what memory I'm using (and incase, one day, I convert away from Singleton).
-(void)dealloc
{
// I'm never called!
// [super dealloc];
}

/ We don't want to allocate a new instance, so return the current one.
+ (id)allocWithZone:(NSZone*)zone {
return [self sharedInstanceOfLevel3];
}

// Equally, we don't want to generate multiple copies of the singleton.
- (id)copyWithZone:(NSZone *)zone {
return self;
}


@end

不幸的是,我现在收到错误“属性'cellsLevelThree'在id类型的对象上找不到。请帮助!!

1 个答案:

答案 0 :(得分:1)

您在评论中正确识别出“出错”的地方:问题不在于您设置的值不正确,而在于您将其设置在本地的全新实例上方法,并在退出该方法后立即丢弃。

通常,应在应用程序启动时创建模型类,并在应用程序的整个生命周期内保持可用。这通常使用singletons完成。