Quote:
Originally Posted by jdandrea
As I understand it, once we get to 64-bit land, variable storage is created at run-time vs. being set up at compile-time. That means those ivars can eventually go bye-bye! Apple may be advocating IBOutlet on property declarations now in anticipation of that.
|
if I nod wisely can I convince you that I understand that

(please don't spend any more time elaborating on that - I will come back to you on that in a year or so...)
one final (i promise) question - and this is really quick:
Code:
cell.text = [[NSString alloc] initWithFormat:@"Description %i", indexPath.row];
returns Description 0, Description 1, Description 2 etc...
how do I make the first item start from 1 instead of 0?
Thanks again