In my project i\'ve got a Deprecations warning, initWithFrame : reuseIdentifier : is deprecated
I don\'t know what it mean, could some one tell me how to resolve thi
This should solve your problem:
static NSString *SimpleTableIdentifier; UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:SimpleTableIdentifier]; if (cell == nil) { cell = [[[UITableViewCell alloc] initWithFrame:CGRectZero reuseIdentifier:SimpleTableIdentifier] autorelease]; }