Hello,
From the view A I open the View B which contains categories in a uitableview, when I select a category I open the view C which contains subcategories for the category (using the CoreData persistence ) in a uitableview, when I select a subcategory I open the view D which contains all my product (using the CoreData persistence ), when I select the the product, how can I set the value into the view A? Avoiding leaks of course...
A(MainWindow)->B(UITableView with category)->C(UITableView with subcategory)->D(UITableView with products) D->C(with the selected product)->B(with the selected product)->A(with the selected product)
I hope I'm enough understable :D
Thank you