в вашем контроллере amountTextField необходимо написать следующий код в файле .h
создать свойство вашего текстового поля
@property(nonatomic,retain)UiTextField *txt; //whatever your textfield name
Теперь в .m файле напишите следующее
@synthesize txt;
написать следующую инструкцию, где вы создаете объект amountKeyboardViewController
amountKeyboardViewController *amountKeyboard = [[amountKeyboardViewController alloc] initWithNibName:@"amountKeyboardViewController" bundle:nil]
amountKeyboard.objamountTextField = self;
Теперь в сумме контроллер KeyKViewViewController напишите следующий код
@class amountTextField; //forward declaration
затем создайте объект этого класса
amountTextField *objamountTextField;
затем создайте свойство
@property(nonatomic,retain)amountTextField *objamountTextField;
Теперь по нажатию кнопки
-(IBAction)clickof1
{
if([amountTextField.text length] <= 0)
objamountTextField.txt.text = @"1";
else
objamountTextField.txt.text=[objamountTextField.txt.text stringByAppendingString:@"1"];
}