deprecations 极不赞成的写法

UITableViewCell *tvCell = [[[UITableViewCellalloc]initWithFrame:CGRectZeroreuseIdentifier:cellIdetify]autorelease];

'initWithFrame:reuseIdentifier:' is deprecated  --上述为极不赞成的写法,建议改为如下写法:

原文地址:https://www.cnblogs.com/ygm900/p/2880178.html