I am creating sample hello world application. The code is below. How can i removed the
warning at c[cell setText:@\"Hello World\"]; in the code below as it deprecat
There's also more Objective-C way of doing that:
[[cell textLabel] setText:@"Hello World"];
and detail label text:
[[cell detailTextLabel] setText:@"Hello World"];