码迷,mamicode.com
首页 > 移动开发 > 详细

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

时间:2015-07-16 00:32:27      阅读:600      评论:0      收藏:0      [点我收藏+]

标签:

很多人在

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!