i add 4 text fields in the view and i cant find the way to write it in viewcontroller.h i try this but not work
@interface ViewController : UIViewController
{
UITextField *TextField1 ;
UITextField *TextField2 ;
UITextField *TextField3 ;
UITextField *TextField4 ;
}
then a property doesnt work with me , like this :
{
@property (weak, nonatomic) IBOutlet UITextField *TextField1 ;
@property (weak, nonatomic) IBOutlet UITextField *TextField2 ;
@property (weak, nonatomic) IBOutlet UITextField *TextField3 ;
@property (weak, nonatomic) IBOutlet UITextField *TextField4 ;
}
i need some help in that :(