• Open Menu Close Menu
  • Apple
  • Shopping Bag
  • Apple
  • Mac
  • iPad
  • iPhone
  • Watch
  • TV
  • Music
  • Support
  • Search apple.com
  • Shopping Bag

Lists

Open Menu Close Menu
  • Terms and Conditions
  • Lists hosted on this site
  • Email the Postmaster
  • Tips for posting to public mailing lists
Re: Method with +
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Method with +


  • Subject: Re: Method with +
  • From: Eric Long <email@hidden>
  • Date: Fri, 19 May 2006 16:34:01 -0700

>    BOOL    *par = [MyClass GetParametersList];
>
> // in the class MyClass
> + (BOOL*)GetParametersList
> {
>     BOOL    *parList = calloc(kTotTimeParam, sizeof(BOOL));
>     int        i;
>
>     for(i = 0; i < kTotTimeParam; i++){
>         parList[i] = (i >= kTimeGenPosX && i <= kTimeGenVolu);
>     }
>
>     return parList;
> }


Seems like this would be a more Cocoa-like approach:

+ (NSArray*) getParametersList
{
    NSMutableArray  *theList = [NSMutableArray arrayWithCapacity:
kTotTimeParam];

    int i;

    for (I = 0; I < kTotTimeParam; I++)
    {
        NSNumber    *parm = [NSNumber numberWithBool:(i >= kTimeGenPosX && i
<= kTimeGenVolu)];

        [theList addObject:parm];
    }

    return theList;
}



Eric


 _______________________________________________
Do not post admin requests to the list. They will be ignored.
Cocoa-dev mailing list      (email@hidden)
Help/Unsubscribe/Update your Subscription:

This email sent to email@hidden

  • Follow-Ups:
    • Re: Method with +
      • From: "Pierce T. Wetter III" <email@hidden>
References: 
 >Method with + (From: Lorenzo <email@hidden>)

  • Prev by Date: Re: Method with +
  • Next by Date: Re: Method with +
  • Previous by thread: Re: Method with +
  • Next by thread: Re: Method with +
  • Index(es):
    • Date
    • Thread