I am really having a hard time with developing an universal application. Here is the situation:

Several UIButtons (13) with UIImages (13) to display Questions (13) on iterated UIImageViews. Each UIButton will have an image, and the position of the UIButton changes depending on the imageView. when that button (Balloon) is pressed it will show another UIButton (Questions) with an image displayed in a different position in the same UIImageView. The first question, worked just fine in the universal application. I managed also to show the other question using the same technique, but as i said, this would lead to a lot of repetitive code, is that the right way?! Reading several posts, this could be done in some arrays, Any help would be so much appreciated since I'm having a hard time thinking of this and the deadline. Here is my unprofessional code:

if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad)
{

    if (pageNum==3 && showLabelContent==YES && showBalloon==YES)
    {

        //clickMeBaloon = [[UIButton alloc] initWithFrame:CGRectMake(-165, 500, 206, 206)];
        clickMeBaloon = [[[UIButton alloc] initWithFrame:CGRectMake(-170, 500, 206, 206)] autorelease];


        [clickMeBaloon setBackgroundImage:[UIImage imageNamed:@"baloon1.png"] forState:UIControlStateNormal];
        //[clickMe setTitle:@"Questions!" forState:UIControlStateNormal];
        [clickMeBaloon setAlpha:1.0];

        [self performSelector:@selector(showQ1_transform_ipad) withObject:nil afterDelay:12.0];


        [clickMeBaloon addTarget:self action:@selector(showQ1_ipad:) forControlEvents:UIControlEventTouchUpInside];

        [self.view addSubview:clickMeBaloon];

    }

    else if (pageNum==6 && showLabelContent2==YES && showBalloon2==YES)
    {

        //clickMeBaloon = [[UIButton alloc] initWithFrame:CGRectMake(-165, 500, 206, 206)];
        clickMeBaloon2 = [[[UIButton alloc] initWithFrame:CGRectMake(-170, 500, 206, 206)] autorelease];


        [clickMeBaloon2 setBackgroundImage:[UIImage imageNamed:@"baloon3.png"] forState:UIControlStateNormal];
        //[clickMe setTitle:@"Questions!" forState:UIControlStateNormal];
        [clickMeBaloon2 setAlpha:1.0];

        [self performSelector:@selector(showQ2_transform_ipad) withObject:nil afterDelay:3.0];


        [clickMeBaloon2 addTarget:self action:@selector(showQ2_ipad:) forControlEvents:UIControlEventTouchUpInside];

        [self.view addSubview:clickMeBaloon2];

    }

}

else
{

    if (pageNum==3 && showLabelContent==YES && showBalloon==YES)
    {

        NSLog(@"Iam an iphone");

        clickMeBaloon = [[[UIButton alloc] initWithFrame:CGRectMake(-70, 210, 70, 70)] autorelease];


        [clickMeBaloon setBackgroundImage:[UIImage imageNamed:@"baloon1.png"] forState:UIControlStateNormal];
        //[clickMe setTitle:@"Questions!" forState:UIControlStateNormal];
        [clickMeBaloon setAlpha:1.0];
        [self.view addSubview:clickMeBaloon];


        [self performSelector:@selector(showQ1_transform_iphone) withObject:nil afterDelay:12.0];

        [clickMeBaloon addTarget:self action:@selector(showQ1_iphone:) forControlEvents:UIControlEventTouchUpInside];

    }


    else if (pageNum==6 && showLabelContent2==YES && showBalloon2==YES)
    {

        NSLog(@"Iam an iphone");

        clickMeBaloon2 = [[[UIButton alloc] initWithFrame:CGRectMake(-70, 210, 70, 70)] autorelease];


        [clickMeBaloon2 setBackgroundImage:[UIImage imageNamed:@"baloon3.png"] forState:UIControlStateNormal];
        //[clickMe setTitle:@"Questions!" forState:UIControlStateNormal];
        [clickMeBaloon2 setAlpha:1.0];
        [self.view addSubview:clickMeBaloon2];
        [self performSelector:@selector(showQ2_transform_iphone) withObject:nil afterDelay:3.0];
        [clickMeBaloon2 addTarget:self action:@selector(showQ2_iphone:) forControlEvents:UIControlEventTouchUpInside];

    }
}

Here are the list of methods that shows the other UIButtons calling questions methods.

-(IBAction)showQ1_ipad:(id)sender
{

    showLabelContent=YES;

    clickMe = [[[UIButton alloc] initWithFrame:CGRectMake(170, 25, 760, 70)] autorelease];

    //[clickMe addTarget:self action:@selector(showLblQ1:) forControlEvents:UIControlEventTouchUpInside];
    [clickMe setBackgroundImage:[UIImage imageNamed:@"Question1.png"] forState:UIControlStateNormal];
    //[clickMe setTitle:@"Questions!" forState:UIControlStateNormal];
    [clickMe setAlpha:0.0];
    //[clickMeBaloon addSubview:clickMe];
    [self.view addSubview:clickMe];

    [UIView animateWithDuration:1.0
    delay:1.0
    options:UIViewAnimationOptionAllowUserInteraction
    animations:^{


        [UIView beginAnimations:nil context:NULL];
        //[UIView setAnimationCurve:UIViewAnimationTransitionFlipFromRight];
        [UIView setAnimationDuration:1.0f];

        clickMe.alpha=1.0;

        [UIView commitAnimations];
        [UIView release];

        //CGAffineTransform newTransform = CGAffineTransformMakeScale(1.5, 1.5);
        //clickMe.transform = CGAffineTransformTranslate(newTransform, 520, 30);
    } completion:nil];

    clickMeBaloon.alpha=0.0;

    [self balloonSound];

    [Audio4 play];
}


-(IBAction)showQ1_iphone:(id)sender
{

    showLabelContent=YES;
    //pageNum=3;
    //clickMe = [[UIButton alloc] initWithFrame:CGRectMake(70, 7, 360, 40)];

    clickMe = [[[UIButton alloc] initWithFrame:CGRectMake(70, 7, 360, 40)] autorelease];

    //[clickMe addTarget:self action:@selector(showLblQ1:) forControlEvents:UIControlEventTouchUpInside];
    [clickMe setBackgroundImage:[UIImage imageNamed:@"Question1.png"] forState:UIControlStateNormal];
    //[clickMe setTitle:@"Questions!" forState:UIControlStateNormal];
    [clickMe setAlpha:0.0];
    [self.view addSubview:clickMe];


    CGRect buttonFrame = clickMe.frame;

    clickMe.frame = buttonFrame;




    [UIView animateWithDuration:1.0
    delay:1.0
    options:UIViewAnimationOptionAllowUserInteraction
    animations:^{


        [UIView beginAnimations:nil context:NULL];
        //[UIView setAnimationCurve:UIViewAnimationTransitionFlipFromRight];
        [UIView setAnimationDuration:1.0f];

        clickMe.alpha=1.0;

        [UIView commitAnimations];
        [UIView release];

    } completion:nil];



    clickMeBaloon.alpha=0.0;
    [self balloonSound];
    [Audio4 play];
}
link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.