Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

i am new to iphone developement ...

i am display image into imageview baesd 'i' values here my code is

.h file is

IBOutlet UIScrollView *imageScrollView;
     IBOutlet UIImageView *imageView;
    NSString  *strImageName;

.m file is 

-(IBAction)btnbackword:(id)sender
{
    if (i == 1)
    {
        strImageName = [NSString stringWithFormat:@"pic_%dstep.png",i];
    }
     if(i == 2)
    {
        strImageName = [NSString stringWithFormat:@"pic_%dstep.png",i];

    }
  if(i == 3)
    {
        strImageName = [NSString stringWithFormat:@"pic_%dstep.png",i];
        }
  if(i == 4)
    {
        strImageName = [NSString stringWithFormat:@"pic_%dstep.png",i];

    }
    if(i == 5)
    {
        strImageName = [NSString stringWithFormat:@"pic_%dstep.png",i];


    }
    if(i == 6)
    {
        strImageName = [NSString stringWithFormat:@"pic_%dstep.png",i];


    }
     if(i == 7)
    {
        strImageName = [NSString stringWithFormat:@"pic_%dstep.png",i];

    }
    if(i == 8)
    {
        strImageName = [NSString stringWithFormat:@"pic_%dstep.png",i];


    }
  if(i == 9)
    {
        strImageName = [NSString stringWithFormat:@"pic_%dstep.png",i];

    }
    if(i == 10)
    {
        strImageName = [NSString stringWithFormat:@"pic_%dstep.png",i];


    }
   if(i == 11)
    {
        strImageName = [NSString stringWithFormat:@"pic_%dstep.png",i];


    }
    if(i == 12)
    {
        strImageName = [NSString stringWithFormat:@"pic_%dstep.png",i];

    }
//    imageView = [[UIImageView alloc] init];
    imageView = [[UIImageView alloc]initWithImage:[UIImage imageNamed:strImageName]];
    [self.imageScrollView addSubview:imageView];
    [imageScrollView release];
    [imageView release];
    [strImageName release];
     i = i+1;
    NSLog(@"values of i>>>>>>>%d",i);
    if (i<=0) 
    {
        i =0;
    }



}

-(IBAction)btnforward:(id)sender
{
    if (i == 12)
    {
        strImageName = [NSString stringWithFormat:@"pic_%dstep.png",i];


    }
    if(i == 11)
    {
        strImageName = [NSString stringWithFormat:@"pic_%dstep.png",i];

    }
     if(i == 10)
    {
        strImageName = [NSString stringWithFormat:@"pic_%dstep.png",i];


    }
     if(i == 9)
    {
        strImageName = [NSString stringWithFormat:@"pic_%dstep.png",i];


    }
   if(i == 8)
    {
        strImageName = [NSString stringWithFormat:@"pic_%dstep.png",i];

    }
    if(i == 7)
    {
        strImageName = [NSString stringWithFormat:@"pic_%dstep.png",i];

    }
     if(i == 6)
    {
        strImageName = [NSString stringWithFormat:@"pic_%dstep.png",i];


    }
     if(i == 5)
    {
        strImageName = [NSString stringWithFormat:@"pic_%dstep.png",i];


    }
   if(i == 4)
    {
        strImageName = [NSString stringWithFormat:@"pic_%dstep.png",i];


    }
  if(i == 3)
    {
        strImageName = [NSString stringWithFormat:@"pic_%dstep.png",i];

    }
  if(i == 2)
    {
        strImageName = [NSString stringWithFormat:@"pic_%dstep.png",i];


    }
    if(i == 1)
    {
      strImageName = [NSString stringWithFormat:@"pic_%dstep.png",i];
    }
//    [imageView release];
//    imageView = [[UIImageView alloc] init];
    imageView = [[UIImageView alloc]initWithImage:[UIImage imageNamed:strImageName]];
    [self.imageScrollView addSubview:imageView];

    [imageScrollView release];
    [imageView release];
    [strImageName release];
    [UIImage alloc];
     i = i-1;
    if (i>=12) 
    {
        i =0;
    }

    NSLog(@"values of i>>>>>>>%d",i);
}

but my probeem is when clik forward ,backword code am written above then values is one ....is display image1 but am my app is crash is it correct way if it's not ...please give me another solution

please help me out from dz probelm ....is it correct way to display image into imageview.....and my image view scroll in not working please guide me

thanks & regards

share|improve this question
please remove this two line from code.. [imageScrollView release]; [imageView release]; – Paras Joshi Oct 2 '12 at 11:16
thanq for quick responce... but ...no change paras – user1586510 Oct 2 '12 at 11:21
you give the iboutlet to scrollview and imageview and also give the delegate to scrollview??? – Paras Joshi Oct 2 '12 at 11:22

closed as not a real question by Josh Caswell, martin clayton, Pent Ploompuu, Mathieu Imbert, Dan Oct 3 '12 at 0:10

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

5 Answers

For a start, don't release our scrollView:

[imageScrollView release];

also, you don't "own" strImageName, so don't release it:

[strImageName release];

Read up on the memory management rules for ObjectiveC - it will be a big help to you.

Also, this is just a memory leak:

[UIImage alloc];
share|improve this answer

firstly, using switch/if+else is probably more efficient than using many IFs in your code, probably won't see an efficiency difference by eye, but if you program complex, sometimes it results bugs for doing this.

I would go and check the releases see if you releasing objects too early? OR if you using the apple ARC, then you don't have to worry about releasing objects, that would probably save you tones of time worrying about memory releases.

in your code you have:

[imageScrollView release];
[imageView release];
[strImageName release];

Only do that in your

-(void)viewDidUnload{
  [imageScrollView release];
  [imageView release];
  [strImageName release];
}

method I would suggest

share|improve this answer
thank u phil88530... – user1586510 Oct 2 '12 at 11:47
you are welcome, please do make me as best answer if that actually solves your issue :D – phil88530 Oct 4 '12 at 17:37

Remove these two lines from the code and also don't alloc the imageview and scrollview if they are already initialized, give the delegate to self for scrollview.

[imageScrollView release];
[imageView release];
share|improve this answer
I believe the imageView release is appropriate, as it was created with init and its retained by the scrollView, no? – David H Oct 2 '12 at 11:23
yes you are right mate but here its not required to alloc the scrollview and imageview because its handled by IBoutlet(with GUI)... – Paras Joshi Oct 2 '12 at 11:27
imageView = [[UIImageView alloc]initWithImage:[UIImage imageNamed:strImageName]]; get crash in dz line after remove above two lines also .. – user1586510 Oct 2 '12 at 11:31
yes mate exact i say in my above comment that here not required to alloc the imageview because its IBOutlet from GUI .. :) – Paras Joshi Oct 2 '12 at 11:35

The problem is you are calling imageView = [[UIImageView alloc]initWithImage:[UIImage imageNamed:strImageName]]; everytime. This is fundamentally incorrect as it is set in in Interface Builder as an IBOutlet

When the .xib is loaded the object is alloc and init automatically, and you have a pointer to that instance, imageView. You need to create the UIImage not the UIImageView (assuming you have connected the UIImageView in the .xib file correctly).

Also you shouldn't need to have all those if statements, you are just inserting the value of i, as long as it is less than 12. Try this code

-(IBAction)btnbackword:(id)sender

    if (i < 13)
    {
        strImageName = [NSString stringWithFormat:@"pic_%dstep.png",i];
    }

    //Set the image here
    imageView.image = [UIImage imageNamed:strImageName];

    //This should be done in the .xib, place the imageView inside the scrollview
    //[self.imageScrollView addSubview:imageView];

    //Dont create and release these every time, just release them 
    //in you dealloc method 
    //[imageScrollView release];
    //[imageView release];

    //You could alloc and dealloc this once per run of this method, might not 
    //need to be an iVar
    //[strImageName release];

    i = i+1;
    NSLog(@"values of i>>>>>>>%d",i);
    if (i<=0) 
    {
        i =0;
    }
share|improve this answer
thank u p_double – user1586510 Oct 2 '12 at 11:41
it working fine ....imageview scroll is not working – user1586510 Oct 2 '12 at 11:58
you'll need to check that you have set the size of the imageView.frame and the scrollView.contentSize to be larger than the scrollView.frame for the view to scroll – P-double Oct 2 '12 at 12:02

if you are new to ios programming, I'd rather suggest you configure the program to use ARC and get rid of the release statements (though reading the docs about memory management cannot hurt).

If I understand u correctly you say i does not change value? do you declare it locally?

also imageView should not be an IBOutlet if you re-allocate it. if you need it as an IBOutlet you'd rather change it's image property with a new image in the IBActions.

instead of the whole bunch of if-statements, something like

if(i <= 12 && i>0) strImageName = [NSString stringWithFormat:@"pic_%dstep.png",i];

should also do the job :)

share|improve this answer
thank u robscure – user1586510 Oct 2 '12 at 11:35