vote up 0 vote down star

I want the first view in my UINavigation Controller grouped, but I can't see where to initWithStyle as UITableViewStyleGrouped.

My MainWindow.xib is set up like:

File's Owner (Outlets: delegate-Test App Delegate)

First Responder

Test App Delegate (Class: TestAppDelegate) (Outlets: navController-Navigation Controller, testListController-Test List Table View, window-Window, delegate-File's Owner)

Window (Outlets: window-Test App Delegate)

Navigation Controller (Class: Navigation Controller) (Outlets: navController-Test App Delegate)

-Navigation BAr

-Test List Table View Controller (Class:TestListTableViewController) (Outlets:testListController-Test App Delegate)

-- Naviagtion Item (Class: UINavigationItem)

The code:

// TestAppDelegate.h
@class TestListTableViewController;

@interface TestAppDelegate : NSObject <UIApplicationDelegate> {
    UIWindow *window;
    TestListTableViewController *testListController;
    UINavigationController *navController;
}

@property (nonatomic, retain) IBOutlet UIWindow *window;
@property (nonatomic, retain) IBOutlet TestListTableViewController *testListController;
@property (nonatomic, readonly) IBOutlet UINavigationController *navController;

@end


// TestAppDelegate.m
- (void)applicationDidFinishLaunching:(UIApplication *)application {
    [window addSubview:navController.view];
    [window makeKeyAndVisible];
} // etc
flag

38% accept rate

2 Answers

vote up 0 vote down

Open up IB, select the Table View within Test List Table View Controller (Class:TestListTableViewController) and in the Inspector window, go to the Attributes (first) tab and change the style from Plain to Grouped

link|flag
The is no Table View within Test List Table View Controller. If I put one in, the programs gives an 'internal consistency' error when run. – cannyboy Sep 20 at 15:18
There must be a Table View in the Table View Controller. TestListTableViewController is a table view controller, which view must be a UITableView. Change your View Mode in IB's main window to list view, and you can easily find all the subviews. If that doesn't work, drag a new UITableViewController object to the UINavigationController object, set it's class to TestListTableViewController and try it again. Something must have gone wrong. – JoostK Sep 20 at 15:46
No, there is no Table View. I'm trying to base my program on this Apple Sample Code: developer.apple.com/iphone/library/… (but without the Tabs). You can see in that code that there is no Table View in the MainWindow.xib. I'm a bit confused about how the Table gets created. – cannyboy Sep 20 at 16:06
Here's my Objects outline: imgdumper.nl/uploads2/4ab65947df3b2/…. Maybe you can show yours or manage it the same way I did to test if it then works. Good luck! – JoostK Sep 20 at 16:32
this pic shows the coredatarecipes sample code xib from apple (top) and my xib (bottom). I put the Table View in my version even though it does nothing. You can see that the Apple xib does not have a Table View in the xib. If I can work out how the table gets initialized in the Apple code then I think my problem will be solved. img185.imageshack.us/i/screenshot20090920at174.png/… – cannyboy Sep 20 at 16:51
show 3 more comments
vote up 0 vote down

or programmatically you can use this initializer:

initWithFrame:style:

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.