El siguiente código:IOS5 iPad UIPopoverController initWithContentViewController NSGenericException
listViewPopoverControllerOL = [[UIPopoverController alloc] initWithContentViewController:myBranchesListViewPage];
produce el siguiente accidente en iPad2 con iOS5. Como comentario, tengo que darme cuenta de que el mismo código funciona perfectamente en iOS4.3.
*** Terminating app due to uncaught exception 'NSGenericException', reason: 'The content view controller argument must be the root of its associated view controller hierarchy.'
*** First throw call stack:(0x370cb8bf 0x35eaa1e5 0x370cb7b9 0x370cb7db 0x306f378d 0x306f0db9 0x5692d 0x567d1 0x37025435 0x303499eb 0x303499a7 0x30349985 0x303496f5 0x3034a02d 0x3034850f 0x30347f01 0x3032e4ed 0x3032dd2d 0x35bdfe13 0x3709f553 0x3709f4f5 0x3709e343 0x370214dd 0x370213a5 0x35bdefed 0x3035c743 0x2871 0x2830) terminate called throwing an exception
Donde "myBranchesListViewPage" se define como:
MyBranchesListView_iPad* myBranchesListViewPage
y "MyBranchesListViewPage" se define como:
MyBranchesListView_iPad : UIViewController<UITableViewDelegate, UITableViewDataSource, MyDetailParserDelegate, UISplitViewControllerDelegate>
no tengo ni idea de por qué tengo este problema en IOS5 (Xcode 4.2) pero no con iOS4.3 (Xcode 4.1)
Gracias de antemano
¿Dónde está creando 'myBranchesListViewPage' y qué está haciendo con él además de usarlo en el popover? – hypercrypt