Monday, April 8, 2013

getter


-(UILabel *)scoreFirstLabel
{    
    if (!_scoreFirstLabel) {
        _scoreFirstLabel = [[[UILabel alloc]initWithFrame:CGRectMake(CGRectGetMaxX(_winnerFierstImageView.frame) +1, CGRectGetMinY(_winnerFierstImageView.frame) +2, 20, 10)] autorelease];
_scoreFirstLabel.textColor = RGBA(32, 43, 68, 1);
_scoreFirstLabel.numberOfLines = 1;
_scoreFirstLabel.font = [UIFont fontWithName:@"EtelkaText" size:10];
_scoreFirstLabel.backgroundColor = [UIColor clearColor];
[self.contentView addSubview:_scoreFirstLabel];
    }
    return _scoreFirstLabel;
}

No comments:

Post a Comment