anotherViewController.myLabel = [NSString stringWithFormat:@"Telephone %@",
anotherViewController.title];
this is the declaration for a previus label however im not sure how to do this for a button... the data array is located made in this format
phoneNumbers = [[NSArray alloc] initWithObjects:@"6940313388", @"4045434218", nil ];
self.phoneNumbers =phoneNumbers;
and then the labels are simply added by
theLabel.text = myLabel;
where mylabel is an NSString
please help ive been trying to solve this for a very long time ...