标签:
很多人在
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
//不用static关键字修饰
NSString *identifile = @"myfrindecell";
WWMyFriendCell *cell = [tableView dequeueReusableCellWithIdentifier:identifile];
if (cell == nil)
{
cell = [[WWMyFriendCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:identifile];
}
return cell;
}
ios-tableviewcell初始化为什么要用static NSString *str = @"mycell"中得static
标签:
原文地址:http://www.cnblogs.com/rankilau/p/4649874.html