в вашем FeaturedViewController.m
- (void)viewDidLoad
{
//create reference of your delegate
YourAppDelegate rootApp = (YourAppDelegate *)[[UIApplication sharedApplication]delegate];
double playlistId = [[[[rootApp playlists] items] objectAtIndex:indexPath.row] playlistId ];
[super viewDidLoad];
}
EDITED
Или вы можете определить свойство в FeaturedViewController и назначить значение в этом VC как:
FeaturedViewController nextView = [[FeaturedViewController alloc] initWithNibName:@"FeaturedViewController" bundle:nil];
//below lineset the value of property and you can pass value to nextView
nextView.playlistId = [[playlists.items objectAtIndex:indexPath.row] playlistId]; ;
[self.navigationController pushViewController:nextView animated:YES];
надеюсь, это даст вам идею доступа к переменной делегата