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"];
old code for version <3 cell.text = @"cell text";
the new code will be
[cell.textLabel setText:@"cell text"];
No comments:
Post a Comment