cellForRowAtIndexPath

来源:互联网 发布:小票小标签打印软件 编辑:程序博客网 时间:2024/06/11 09:58
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {        static NSString *cellID = @"cellID";    PANWeiXinSweepYardTableViewCell*cell = [tableView dequeueReusableCellWithIdentifier:cellID];    cell.selectionStyle = UITableViewCellSelectionStyleNone;    if (cell == nil) {        cell = [[PANWeiXinSweepYardTableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellID];    }    return cell;}

0 0
原创粉丝点击