Давайте предположим, что ваш второй класс SecondViewController .
Теперь в SecondViewController объявите один NSString
и установите его свойства.
SecondViewController.h
NSString *strTextValue;
....
@property(nonatomic,retain) NSString *strTextValue;
SecondViewController.m
@synthesize strTextValue;
Сейчас в GroupDetailViewController , при событии касания кнопки введите значение из текстовое поле в strTextValue
.
-(IBAction)ButtonMethod:(id)sender
{
SecondViewController *controller = [[SecondViewController alloc]init];
controller.strTextValue = [txtField text];
//Navigate to SecondViewController
}
Поместите strTextValue
в метку, созданную в SecondViewController
SecondViewController.m
lbl.text = strTextValue;