So I have
NSEnumerator *e = [myWords objectEnumerator];
id object;
while (object = [e nextObject])
{
UITableViewCell *newcell;
newcell.textLabel.text = @"Hello";
}
But I see no way to append it to the end of a tablieView. Forgive my ignorance I am recently transitioning from Visual Studio where they requires less knowledge and do a bit more of this stuff for you via methods such as .append(object). I have searched on stack overflow and frankly haven’t found any example code while in this midst of an enumerator.
I appreciate the help.
KT
The approach is totally different in iOS. You don’t feed the cells directly to the tableview.
The tableview asks you for a cell and it only asks for visible cells.
Unless you read the tableview programming guide: Table View Programming Guide for iOS
you won’t understand the mechanism.