您好,我有 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