• 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: Newbie with stupid question cont.
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Newbie with stupid question cont.


  • Subject: Re: Newbie with stupid question cont.
  • From: Manuel Darveau <email@hidden>
  • Date: Mon, 18 Mar 2002 23:42:44 -0500

> I've tried what you guys just told me but when I build and run the app it
> unexpectedly quits. (it's a system preference pane) What up?

Try to remove (comment) any [bla release] or autorelease from your code and
try it again.

If you try to release an object that you dont initialized, you will get a
crash.


BTW, little question. If I do:
NSString *bla = [aString substringFromIndex:5];

Do I need to send a release to bla?
I'm asking because the following code crash if I uncomment the [sReturn
release]:

- (NSArray *) getInterfaceIPList{
NSArray *ifaces;
NSMutableArray *arrReturn;
NSString *sReturn;
int x;

ifaces = [self getInterfaceList];
arrReturn = [NSMutableArray arrayWithCapacity:[ifaces count]];
for(x=0 ; x < [ifaces count]; x++){
sReturn = [NSString stringWithFormat:@"%@ (%@)", [ifaces
objectAtIndex:x], [self getIPForInterface:[ifaces objectAtIndex:x]]];
[arrReturn addObject:sReturn];
[sReturn release]
}
return arrReturn;
}

Manuel Darveau
_______________________________________________
cocoa-dev mailing list | email@hidden
Help/Unsubscribe/Archives: http://www.lists.apple.com/mailman/listinfo/cocoa-dev
Do not post admin requests to the list. They will be ignored.

  • Follow-Ups:
    • Re: Newbie with stupid question cont.
      • From: deekpyro <email@hidden>
References: 
 >Re: Newbie with stupid question cont. (From: deekpyro <email@hidden>)

  • Prev by Date: Re: debugging a System Preferences pane
  • Next by Date: Re: click through view ?
  • Previous by thread: Re: Newbie with stupid question cont.
  • Next by thread: Re: Newbie with stupid question cont.
  • Index(es):
    • Date
    • Thread