Statt
cell.text = @”fooBar”;
Sollte man:
cell.textLabel.text = @”rightFooBar”;
nutzen.
Grund: die cell.text Methode ist deprecated und sollte nicht mehr genutzt werden.
Schlagworte: cell, deprecated, iPhone, tablecell, tableview
Statt
cell.text = @”fooBar”;
Sollte man:
cell.textLabel.text = @”rightFooBar”;
nutzen.
Grund: die cell.text Methode ist deprecated und sollte nicht mehr genutzt werden.
Schlagworte: cell, deprecated, iPhone, tablecell, tableview
[...] http://www.alexanderjaeger.de/cell-text-deprecated-use-cell-textlabel-text/ [...]