Hi,
Instead of using labels to place the typed text in iPhone, i would like to use a TableView (UITableview). A snippet of a code to display texts on label is as follows:
self.string = textField.text;
. . .
. . .
NSString *greeting = [[NSString alloc] initWithFormat"%@!",
nameString];
label.text = greeting;
[greeting release];
Is there a similar method or code that i could follow for texts in TableView?
Thx!
Instead of using labels to place the typed text in iPhone, i would like to use a TableView (UITableview). A snippet of a code to display texts on label is as follows:
self.string = textField.text;
. . .
. . .
NSString *greeting = [[NSString alloc] initWithFormat"%@!",
nameString];
label.text = greeting;
[greeting release];
Is there a similar method or code that i could follow for texts in TableView?
Thx!