2010-10-28 30 views
0

I ajouté UIWindow et sa barre d'outils comme:Puis-je ajouter une barre d'outils manuellement dans UIWindows?

 
self.window = [[[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]] autorelease]; 
NSArray * arr = [NSArray arrayWithObjects:@"test1", @"test2", nil]; 
[[self.window rootViewController] setToolbarItems:arr animated:NO]; 

Aucune barre d'outils montrant.

Est-ce faisable? Merci.

+0

Pourriez-vous montrer un exemple de code pour démontrer votre solution. Je suis toujours coincé avec ça. :( – Illep

Répondre

1

Vous devez ajouter votre viewController (avec une barre d'outils) à la fenêtre après l'initialisation de la fenêtre.