开发者

'setText' is deprecated

开发者 https://www.devze.com 2023-02-22 03:41 出处:网络
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

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

精彩评论

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