I have 2 view controllers . First one is UIview controller and second one is table view controller. I want to send data 2nd (table view controller) to first(uiview Controller) after the selection of rows of 2nd view controller. For this i have written a delegate protocol. But my delegate protocol is not working... I figured out the problem.The object of second view controller that i am creating.
address = [[second_viewcontroller alloc] init];
address.delegate = self;
is different from self of second_viewcontroller view controller page. How to make this two same.
self = [[second_viewcontroller alloc] init];