¡@

Home 

2014/10/15 ¤U¤È 10:15:49

iphone Programming Glossary: viewccontroller

How to pass data back from one view to other View in IOS?

http://stackoverflow.com/questions/11885673/how-to-pass-data-back-from-one-view-to-other-view-in-ios

ViewBController UIViewController ViewBProtocol ... @end Here we make ViewBController follow our protocol that ViewCController will communicate to. Next up is ViewCController interface @interface ViewCController UIViewController @property nonatomic.. ... @end Here we make ViewBController follow our protocol that ViewCController will communicate to. Next up is ViewCController interface @interface ViewCController UIViewController @property nonatomic weak id ViewBProtocol delegate ... @end Now we.. follow our protocol that ViewCController will communicate to. Next up is ViewCController interface @interface ViewCController UIViewController @property nonatomic weak id ViewBProtocol delegate ... @end Now we look at ViewBController's prepareForSegue..