0

我有一个在我的标题中提到的 ivar

@interface MyClass : UIView{
    int thistone;}
- (IBAction)toneButton:(UIButton *)sender;
@property int thistone;
@end

我在实现中综合了它:

@implementation MyClass
@synthesize thistone;
- (IBAction)toneButton:(UIButton *)sender {
if(thistone<4)
    {thistone=1000;}   // I hate this line.
    else{thistone=thistone+1; }  
}

我找不到(或在任何手册中找到)设置非零初始值的方法。我希望它从 1000 开始,每次按下按钮时增加 1。该代码完全符合我的意图,但我猜有一种更合适的方法可以为我节省上面的 if/else 语句。非常感谢代码修复或指向在线文档中特定行的指针。

4

1 回答 1

1

每个对象都有一个init在实例化时调用的方法的变体。实现这个方法来做这样的设置。UIView 尤其具有initWithFrame:initWithCoder. 最好覆盖所有并调用单独的方法来执行所需的设置。

例如:

- (void)commonSetup
{
    thisTone = 1000;
}


- (id)initWithFrame:(CGRect)frame
{
    if (self = [super initWithFrame:frame])
    {
        [self commonSetup];
    }

    return self;
}


- (id)initWithCoder:(NSCoder *)coder
{
    if (self = [super initWithCoder:coder])
    {
        [self commonSetup];
    }

    return self;
}
于 2012-09-28T02:06:06.663 回答