Home » Reflexiones » Page 6

Category: Reflexiones

Thoughts on AwakeFromNib

First of all, awakeFromNib is called on every object that is initialized or referenced from within a nib file.

from Apple dev docs

awakeFromNib
Prepares the receiver for service after it has been loaded from an Interface Builder archive, or nib file.

some quora answers:

http://www.quora.com/Cocoa-API/What-is-the-difference-between-initWithCoder-initWithNibName-and-awakeFromNib

Best Practices

According to some experienced apple developers, there’s not such thing as best practices in iOS, and other related tecnologies, this because the plataform is still young compared with other big ones Java, etc, but this not must be an excuse to try at least, some emerging tools.

Like

  • Test Driven Development
  • Continuous Integration
  • Documenting Code

Safe Coding!