What is the difference between "cell.text" and "cell.textlabel.text"?
cell.text = [std objectForKey:@"name"];
cell.textlabel.text = [std objectforkey:@"name"];
When I use the first option it shows a warning message: "text is deprecate开发者_Python百科d".
The deprecation warning should make it obvious what is the difference: One is the old name, the other one is the new name.
The old name is still supported for compatibility, but should not be used in new applications, as it will be removed in the future (hence the warning).
精彩评论