• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/3

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

3 Cards in this Set

  • Front
  • Back
What is an IBOutlet?
A reference from code to an object in the nib.
Where do you declare instance variables?
Instance variables go in the header (.h) file, inside the @interface declaration.
What is the fundamental memory rule?
You own any object you obtain by way of a method with alloc, new, or copy in its name, and you must eventually release (or autorelease) such objects. You do not own objects obtained through other means and must not release them, unless you choose to become an owner by calling retai".