¡@

Home 

2014/10/15 ¤U¤È 10:08:32

iphone Programming Glossary: evte

Passing variables from one view to an other

http://stackoverflow.com/questions/3545597/passing-variables-from-one-view-to-an-other

header #import UIKit UIKit.h @interface FirstViewController UIViewController IBOutlet UITextField Te NSInteger evTe @property nonatomic retain UITextField Te @property nonatomic NSInteger evTe IBAction makeKeyboardGoAway @end and then this.. IBOutlet UITextField Te NSInteger evTe @property nonatomic retain UITextField Te @property nonatomic NSInteger evTe IBAction makeKeyboardGoAway @end and then this in my implementation file #import FirstViewController.h @implementation FirstViewController.. @implementation FirstViewController @synthesize Te IBAction makeKeyboardGoAway Te resignFirstResponder evTe Te.text intValue How would I call evTe in my SecondViewController maybe using a delegate . This is what I've got in the..