From what I understand (and please correct me if I\'m wrong):
int x, count = 10;
int *hello;
hello = &count;
x = *hello;
Here the varia
All the usage of objects in objective c is done through object references, e.g. pointers.
str
is an object reference of type NSString
(as myFraction
) and @"Programming can be a headache"
is an object reference of type NSString
as well, so you can assign it to str
.Additional to Binyamin
description
Returns a string that represents the contents of the receiving class.