开发者

'setText' is deprecated

Hey guys, So i'm building an app combining Table View and Navigation Controller into my Tab Bar application and while it's compiling, I bumped into an error saying: 'setText' is deprecated

This is the section of my c开发者_StackOverflowode that got this error:

NSUInteger row = [indexPath row];
cell.text = [glossaryArray objectAtIndex:row]; // Right here is the problem

So hopefully anyone can help me out? Thanks


Use cell.textLabel.text instead.


change cell.text to cell.textLabel.text


Why not have a look at the API documentation? It was 10 seconds to find out after looking for "text" in UITableViewCell:

The text of the cell. (Deprecated in iOS 3.0. Use the textLabel and detailTextLabel properties instead.)

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜