• 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: What is the difference between the -awakeFromNib and -init?
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: What is the difference between the -awakeFromNib and -init?


  • Subject: Re: What is the difference between the -awakeFromNib and -init?
  • From: John Baldwin <email@hidden>
  • Date: Tue, 14 Jul 2009 07:37:22 -0700

Here's some reference material that I think helps explain this. It sounds like you're new to Cocoa, so a beginning Cocoa book might be helpful as well. I liked the Hillegass book, but shop around for one that fits your style.

awakeFromNib:
http://developer.apple.com/documentation/Cocoa/Conceptual/LoadingResources/CocoaNibs/CocoaNibs.html#/ /apple_ref/doc/uid/10000051i-CH4-SW18


init:
Check the documentation for NSObject. It explains it pretty well.

John

On Tuesday Jul 14  2:20 AM, at 2:20 AM, Bright wrote:

In applications, there are - (void)awakeFromNib and - (id)init method at the same time.




- (void)awakeFromNib{

  //add code

 }




- (id)init{

  self = [super init];

  if (self) {

     //add code

 }

  return self;

}







What's the difference between the two methods?




Thank you.




Bright _______________________________________________

_______________________________________________

Cocoa-dev mailing list (email@hidden)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden


References: 
 >What is the difference between the -awakeFromNib and -init? (From: Bright <email@hidden>)

  • Prev by Date: Re: What is the difference between the -awakeFromNib and -init?
  • Next by Date: Re: spaghetti code with core data and multiple views
  • Previous by thread: Re: What is the difference between the -awakeFromNib and -init?
  • Next by thread: Getting the list of users and groups (anything new?)
  • Index(es):
    • Date
    • Thread