Sunday, November 15, 2009

setText is deprecated

If we compile our old source with >= 3.x versions, we will get this warning..

old code for version <3 cell.text = @"cell text";

the new code will be
[cell.textLabel setText:@"cell text"];

No comments:

Post a Comment