Вы можете реализовать свою последнюю ячейку как пользовательскую ячейку и добавить зеленый значок по вашему выбору.
См. Учебник по реализации пользовательской ячейки.
Учебник по программированию для iPhone: Часть 6. Создание пользовательского UITableViewCell с помощью Interface Builder UITableView
Изменено:
Допустим, ячейка является экземпляром UITabelViewCell
.
Сначала создайте кнопку, используя зеленый значок.
UIButton myGreenIconButton = [UIButton buttonWithType:UIButtonTypeCustom];
[myGreenIconButton addTarget:self action:@selector(GreenIconButtonClicked:)forControlEvents:UIControlEventTouchUpInside];
[myGreenIconButton setBackgroundImage:[UIImage imageNamed:@"greenIcon.png"] forState:UIControlStateNormal];
myGreenIconButton.tag = i;
myGreenIconButton.backgroundColor = [UIColor clearColor];
myGreenIconButton.frame = CGRectMake(5, 78, 15, 15);
Теперь добавьте это как подпредставление в вашем последнем UITabelViewCell
.
[cell addSubview:myGreenIconButton];
Реализация GreenIconButtonClicked:
метода для получения клика на вас, добавить зеленую иконку
-(void) GreenIconButtonClicked:(id) sender
{
}