iPhone tip 1
在一些关于tableView的程序中必须要写的数据源方法cellForRowAtIndexPath中,设置缓冲Cell时,用以前的方法会有警告,错误如下:
warning: ’setText:’ is deprecated (declared at /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator3.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableViewCell.h:199)?这时只需要把cell.text改为cell.textLabel.text即可//*********************************************************