objective c - I need to implement the expandable tableView cell in ios 8 -
in project need implement uitableview of tableview cells expandable , of them independent. if expandable cell need indicate '+' symbol.enter image description here. can 1 please me out i have created small demo, https://github.com/haripalwagh/expandabletableviewcell screenshot 1 : before expanding cell screenshot 2 : after expanding cell @interface viewcontroller () <uitableviewdatasource, uitableviewdelegate> { uitableview *tblview; nsarray *cell0submenuitemsarray; bool issection0cell0expanded; } @end @implementation viewcontroller # pragma mark - view life cycle - (void)viewdidload { [super viewdidload]; tblview = [[uitableview alloc] initwithframe:cgrectzero style:uitableviewstylegrouped]; tblview.backgroundcolor = [uicolor clearcolor]; tblview.delegate = self; tblview.datasource = self; tblview.allowsselection = yes; tblview.scrollenabled = yes; tblview.alwaysbouncevertical = yes; [self.view...