添加了自动白色空格

时间:2012-11-15 07:57:26

标签: ios uitableview

你好我有UItableview但是在空间的每一行都会自动添加。例如 ABC  AAA   VVV     TTT BBB 然后最后一次进入是从开始。任何提前帮助thx!

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

1 个答案:

答案 0 :(得分:0)

k我找到了解决方案。这就是我改变缩进的方法lvl

tvc.indentationLevel = 0;
tvc.indentationWidth = 0;