In IB create the UItableviewcell and save it. Select write class files under menu and add it to the project.
you have to write the initwithcgrectframe ( dont remember the exact function name) by yourself and in the initialization function do this:
if(self=[ super init])
{
self=[ [ [ NSBundle mainBundle ] loadNibNamed:@"NIB name without extension" owner:self options:nil] lastObject];
}
return self;
that should do the trick
|