Tengo 2 clases que heredan UITableViewControllers. Y estas dos vistas de tabla deberían usar la misma UITableViewCell personalizada. Entonces, ¿cómo puedo usar una UITableViewCell personalizada desde un archivo Nib en dos clases diferentes? El propietario del xib solo puede ser de 1 clase.iPhone: cómo usar UITableViewCell en dos vistas de tabla
@interface Class1 : UITableViewController<UITableViewDataSource,
UITableViewDelegate> {
UITableViewCell *myCustomTableRow;
}
@property (nonatomic, retain) IBOutlet UITableViewCell *myCustomTableRow;
@interface Class2 : UITableViewController<UITableViewDataSource,
UITableViewDelegate> {
UITableViewCell *myCustomTableRow;
}
@property (nonatomic, retain) IBOutlet UITableViewCell *myCustomTableRow;
Sí, buena idea..Gracias – Jim