-(UITableViewCell*) tableView:(UITableView*)tableView cellForRowAtIndexPath:(NSIndexPath*)indexPath
{
    if (indexPath.row == 0)
    {
        UserCell* cell = (UserCell*)[tableView dequeueReusableCellWithIdentifier:@"UserCell"];
        if (!cell)
            cell = [self createUserCell];
        return cell;
    }
    else
    {
        CommentCell* cell = (UserCell*)[tableView dequeueReusableCellWithIdentifier:@"CommentCell"];
        if (!cell)
            cell = [self createCommentCell];
        return cell;
    }
}