Hi I have an error when I press my button in one page to connect to another view
would you please help me Thanks in advance!
Here is my code
-(void)buttonPressed:(UIButton *)button
{
NSLog(@"button %u -- frame: %@", button.tag, NSStringFromCGRect(button.frame));
[self performSegueWithIdentifier:@"WeekView" sender:self];
}
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
{
if ([segue.identifier isEqualToString: @"WeekView"]){
[segue.destinationViewController setTitle:@"WeekView"];
}}
this error in this line
with debugging = Signal Sigabrat start from here
[self performSegueWithIdentifier:@"WeekView" sender:self];
I also identify WeekView in Segue and also use shipt+command+K to clean but still error