ios - static tableview connect to an another dynamic tableview -
i play around uitableviews. have 1 static table view connect dynamic table view. click on row static table view, should change , show detail in dynamic table view. problem is, change, table view empty. but, if try show first dynamic table view, work fine... how impossible? it looks that: https://www.dropbox.com/s/cr6m50bqdic6yrk/bildschirmfoto%202015-06-25%20um%2018.20.26.png?dl=0 code dynamic table view: - (void)viewdidload { [super viewdidload]; self.weekdays = [nsmutablearray arraywithobjects:@"a", @"b", @"c", @"d", @"e", @"f", @"g", nil]; } -(void)viewdidappear:(bool)animated{ } - (nsinteger)numberofsectionsintableview:(uitableview *)tableview { return 1; } - (nsinteger)tableview:(uitableview *)tableview numberofrowsinsection:(nsinteger)section { return [self.weekdays count]; } - (uitableviewcell *)tableview:(uitableview *)tableview cellforrowatindexpath:(nsindexpath *)inde...