You can delete items in a section using QSortingSection instead of QSection and set canDeleteRows to YES.
QSortingSection *foosection = [[QSortingSection alloc] init]; foosection.canDeleteRows = YES;
Continue adding items as usual, and you should be able to scroll through each item so that the delete button appears. When you click the delete button, the item automatically disappears from the section.
source share