General Flashcards

0
Q

Key- value coding is a set of methods defined in NSObject that enable you to…

A

set and get the values of properties by name.

methods:
- (id) valueForKey: (NSString *)key;
- (void) setValue: (id)value forKey: (NSString *)key;

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
1
Q

Say your application includes a small image of 25x25 pixels. If this image is displayed on a Retina display, then…

A

the image must be stretched to cover an area of 50x50 pixels.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly