ios-tableviewcell初始化为什么要用static NSString *str = @"mycell"中得static

很多人在

- (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;

}

转载于:https://www.cnblogs.com/rankilau/p/4649874.html

你可能感兴趣的:(ios-tableviewcell初始化为什么要用static NSString *str = @"mycell"中得static)