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