0

您好,我有 UItableview,但在空间的每一行期间会自动添加。例如 abc aaa vvv ttt bbb 然后最后一个条目再次从头开始。提前任何帮助谢谢!

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{


    if(tableView == tableAttendeeList)
    {
    static    NSString *cellName=@"AttendeeCell";

        UITableViewCell *tvc = [tableView dequeueReusableCellWithIdentifier:cellName];
        NSLog(@"%@",tvc.textLabel.text);
        NSLog(@"%i",indexPath.row);
        if (tvc == nil) {
            tvc=[[[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellName]autorelease];
            HMAttendee* attdee = [[HMMainManager getSharedInstance].currentMeeting.arrMeetingUsers objectAtIndex:indexPath.row];  
            NSLog(@"%@",attdee.strName);

            tvc.textLabel.text = attdee.strName;

        return tvc;    
        }
        HMAttendee* attdee = [[HMMainManager getSharedInstance].currentMeeting.arrMeetingUsers objectAtIndex:indexPath.row];  
        tvc.textLabel.text=attdee.strName;
        return tvc;

    }//end if
4

1 回答 1

0

ki找到了解决方案。thx 任何方式我只是改变缩进 lvl

tvc.indentationLevel = 0;
tvc.indentationWidth = 0;
于 2012-11-15T08:56:53.327 回答