'initWithFrame:reuseIdentifier:' is deprecated in version upgrade

This syntax is no longer used in versions after iOS 3.0. The solution is as follows:
Will:

C code   收藏代码
  1. cell = [[[UITableViewCell alloc] initWithFrame:CGRectZero reuseIdentifier:CellIdentifier] autorelease];  

  change into:

C code   收藏代码
  1. cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];