嗨,我工作了Xcode和對象 - 和我得到這樣的警告:的setText已被棄用
棄用:「的setText:」已被棄用
我想知道什麼新方法是
這是我的代碼:
[cell setText:[NSString stringWithFormat:@"I am cell %d", indexPath.row]];
嗨,我工作了Xcode和對象 - 和我得到這樣的警告:的setText已被棄用
棄用:「的setText:」已被棄用
我想知道什麼新方法是
這是我的代碼:
[cell setText:[NSString stringWithFormat:@"I am cell %d", indexPath.row]];
的setText確實過時了。使用爲textLabel的setText代替:
cell.textLabel.text = [NSString stringWithFormat:@"I am cell %d", indexPath.row];
謝謝,我想到的是均是如此。 – Rollo
當你得到一個過時的警告,只是ALT +點擊觸發它的方法或屬性,你會得到基本的信息看,從文件一酥料餅的視圖中,包括財產或您應該使用的方法。
請使用搜索框提問之前: http://stackoverflow.com/questions/1089676/alternative-to-deprecated-uitableviewcell-settext/1089683#1089683 –