开发者

Constructor in Objective-C

开发者 https://www.devze.com 2023-01-01 14:43 出处:网络
I have created my iPhone apps but I have a problem. I have a classViewController where I have implemented my program.

I have created my iPhone apps but I have a problem. I have a classViewController where I have implemented my program. I must alloc 3 NSMutableArray but I don't want do it in grapich methods. There isn't a const开发者_开发技巧ructor like Java for my class?

// I want put it in a method like constructor java

arrayPosition = [[NSMutableArray alloc] init];
currentPositionName = [NSString stringWithFormat:@"noPosition"];


Yes, there is an initializer. It's called -init, and it goes a little something like this:

- (id) init {
  self = [super init];
  if (self != nil) {
    // initializations go here.
  }
  return self;
}

Edit: Don't forget -dealloc, tho'.

- (void)dealloc {
  // release owned objects here
  [super dealloc]; // pretty important.
}

As a side note, using native language in code is generally a bad move, you usually want to stick to English, particularly when asking for help online and the like.


/****************************************************************/
- (id) init 
{
  self = [super init];
  if (self) {
    // All initializations you need
  }
  return self;
}
/******************** Another Constructor ********************************************/
- (id) initWithName: (NSString*) Name
{
  self = [super init];
  if (self) {
    // All initializations, for example:
    _Name = Name;
  }
  return self;
}
/*************************** Another Constructor *************************************/
- (id) initWithName:(NSString*) Name AndAge: (int) Age
{
  self = [super init];
  if (self) {
    // All initializations, for example:
    _Name = Name;
    _Age  =  Age;
  }
  return self;
}
0

精彩评论

暂无评论...
验证码 换一张
取 消