views:

7

answers:

1

Hi, i've created a custom cell table view with the following header file:

@interface Tab1 : UITableViewController
{
ApplicationCell *tmpCell;
NSArray *data;
}

and i have individualcell class and nib file, there is no nib file for tableview since i am using custom cell.

this function works fine.

now i want to have this custom cell view be a drill down view of a navigation view.

i copy all the require file, connect up the outlets and define the class. but it doesn't works.

i figure the error might be in the header file.

normally for header file of the drill down view i have:

@interface PageFourViewController : UIViewController //this part is the prb

and than i add and a nib file to display my table view. but in this case, i am using custom cell, how can i change the header so it works?

thx in advance

A: 

Basically i have a navigation page, when drill down view one, it will display a custom cell table.

initially i have this as header for view one:

@interface ViewOneController : UIViewController

now when i change to:

@interface ViewOneController : UITableViewController

it doesn't work.

so what i would like to ask is, how can i navigate to a custom cell table view? cause i create an app with only custom cell table and it works, but i can't seem to get it to work will navigation(from main to it). The custom cell table has no navigate to option, just displaying

thks for the time

Stefan