嗨, 所以我建立一個應用程序表視圖和導航控制器組合成我的標籤欄應用程序,而它的編譯,我碰到了一個錯誤說:「的setText」已過時「的setText」已過時
這是我的代碼得到這個錯誤的部分:
NSUInteger row = [indexPath row];
cell.text = [glossaryArray objectAtIndex:row]; // Right here is the problem
所以希望有人能幫助我嗎?謝謝
嗨, 所以我建立一個應用程序表視圖和導航控制器組合成我的標籤欄應用程序,而它的編譯,我碰到了一個錯誤說:「的setText」已過時「的setText」已過時
這是我的代碼得到這個錯誤的部分:
NSUInteger row = [indexPath row];
cell.text = [glossaryArray objectAtIndex:row]; // Right here is the problem
所以希望有人能幫助我嗎?謝謝
改爲使用cell.textLabel.text
。
爲什麼不看看API文檔?在UITableViewCell中查找「文本」後找到了10秒鐘:
The text of the cell. (Deprecated in iOS 3.0. Use the textLabel and detailTextLabel properties instead.)
感謝您的幫助! – PatrickGamboa 2011-04-04 16:31:21