- (IBAction)pushupViewController

id)sender
{
//(error:expected ';' before '{' token)
pushupViewController *push = [[pushupViewController alloc] initWithNibName:nil bundle:nil];
[self presentModalViewController

ush animated:NO];
}
...so from that im gathering i need to put ';' after '(id)sender' ..
- (IBAction)pushupViewController
id)sender;
{
but then once i do that it it comes up with 2 errors...
- (IBAction)pushupViewController

id)sender;
{
//(error:expected identifier or '(' before '{' token)
and....
- (void)viewDidLoad {
//(error:expected ' ;' before ' {' token)
[super viewDidLoad];
then basically it passes errors along as i try and fix them.. so im thinking that the actual problem is in the header file
what you think??