Ok let me explain the situation, I have two view controller let\'s call them first ans second.
The problem was in the initialization, i was setting the label before the view was loaded. Initialize the label in viewDidLoad solved the problem.
Elio
Simple test - set a breakpoint at the line where you set self.fileNameLabel.text. When the app stops there, use the debugger to see if the pointer is null.
Most likely causes: - The outlet is not linked properly - The file owner is not of the right class, make sure to set it to your DbTransfer class
H