- (IBAction)B1:(id)sender {
LastView *New;
New.Connection1=@"Salut";
}
LastView is my class to a viewcontroller that has a label T1. B1 is my button in another ViewController. I have declared in Lastview that T1.text=Connection1; but the label isn't changing when I press B1 which is my button in the other viewcontroller.