Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8639399
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T10:59:35+00:00 2026-06-12T10:59:35+00:00

I’m trying to build slot machine game using UIPickerView. I populate it using UIImageView.

  • 0

I’m trying to build “slot machine” game using UIPickerView. I populate it using UIImageView. Problem is that, random images in picker view disappear after every spin, and randomly shows again. It happens on device with ios 5.1.1, but on device with ios4.2.1 and simulator it works perfectly. Right now I’m using CircularPickerView but before I used UIPickerView and problem was the same.
Here’s screenshot: http://axgrzesiek.w.interii.pl/licznik.PNG

GraViewController.h:

#import <UIKit/UIKit.h>

#import "CircularPickerView.h"
@interface GraViewController : UIViewController
    <UIPickerViewDataSource, UIPickerViewDelegate> {
        CircularPickerView *picker;
        UILabel *winLabel;
        NSArray *column1;
        NSArray *column2;
        NSArray *column3;


}
@property(nonatomic, retain) IBOutlet CircularPickerView *picker;
@property(nonatomic, retain) IBOutlet UILabel *winLabel;
@property(nonatomic, retain) NSArray *column1;
@property(nonatomic, retain) NSArray *column2;
@property(nonatomic, retain) NSArray *column3;
-(IBAction)spin;

@end

GraViewController.m:

- (IBAction)spin { 
    BOOL win = NO;
    int numInRow = 1; 
    int lastVal = -1; 
    for (int i = 0; i < 3; i++) {
        int newValue = arc4random() % [self.column1 count];
        if (newValue == lastVal) 
            numInRow++;
        else
            numInRow = 1;

        lastVal = newValue; 
        //if (newValue < [self.column1 count] || newValue >= (2 * [self.column1 count]) ) {
            //newValue = newValue % [self.column1 count];
            //newValue += [self.column1 count];
        [self.picker selectRow:newValue inComponent:i animated:YES];


        //}
        NSLog(@"kol:%d %d",i, newValue);
        //[picker reloadComponent:i]; 
        if (numInRow >= 3)
            win = YES;
    } 
    if (win)
        winLabel.text = @"WIN!"; 
    else 
        winLabel.text = @"";

    //[picker reloadAllComponents];
    //[self performSelector:@selector(moveIntoPosition) withObject:nil afterDelay:0.5f];



- (void)viewDidLoad { 

    NSString  *title=@"Gra";
    [self setTitle:title];

    UIImage *seven = [UIImage imageNamed:@"jeden.png"]; 
    UIImage *bar = [UIImage imageNamed:@"dwa.png"]; 
    UIImage *crown = [UIImage imageNamed:@"trzy.png"]; 
    UIImage *cherry = [UIImage imageNamed:@"cztery.png"]; 
    UIImage *lemon = [UIImage imageNamed:@"piec.png"]; 
    UIImage *apple = [UIImage imageNamed:@"szesc.png"];
    for (int i = 1; i <= 3; i++) { 
        UIImageView *sevenView = [[UIImageView alloc] initWithImage:seven]; 
        UIImageView *barView = [[UIImageView alloc] initWithImage:bar]; 
        UIImageView *crownView = [[UIImageView alloc] initWithImage:crown]; 
        UIImageView *cherryView = [[UIImageView alloc] initWithImage:cherry]; 
        UIImageView *lemonView = [[UIImageView alloc] initWithImage:lemon];
        UIImageView *appleView = [[UIImageView alloc] initWithImage:apple]; 
        NSArray *imageViewArray = [[NSArray alloc] initWithObjects:
                                    sevenView, barView, crownView, cherryView, lemonView, appleView, nil];
        NSString *fieldName = [[NSString alloc] initWithFormat:@"column%d", i];
        [self setValue:imageViewArray forKey:fieldName];
        //column1=[[NSArray alloc]initWithArray:imageViewArray];
        //column2=[[NSArray alloc]initWithArray:imageViewArray];
        //column3=[[NSArray alloc]initWithArray:imageViewArray];
        [fieldName release];
        [imageViewArray release];
        [sevenView release]; 
        [barView release]; 
        [crownView release]; 
        [cherryView release]; 
        [lemonView release]; 
        [appleView release];
        //[picker selectRow: [self.column1 count] * (48 / 2) inComponent:i-1 animated:NO];
    }


}


- (UIView *)pickerView:(UIPickerView *)pickerView viewForRow:(NSInteger)row forComponent:(NSInteger)component reusingView:(UIView *)view {

    NSString *arrayName = [[NSString alloc] initWithFormat:@"column%d", component+1];
    NSArray *array = [self valueForKey:arrayName];
    [arrayName release];
    return [array objectAtIndex:row];

}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-12T10:59:37+00:00Added an answer on June 12, 2026 at 10:59 am

    I think the problem might be in the way you’re reusing views for your picker – you should not cache UIImageViews yourself (probably UIPickerView tries to use the same UIImageView in multiple places, so one of those places stays unoccupied).

    Correct way will be to store UIImage instances and fill UIImageView that may be cached by picker. Boilerplate code (not tested):

    - (void) viewDidLoad{
     ...
     Here cache UIImages, not UIImageViews
     ...
    }
    
    - (UIView *)pickerView:(UIPickerView *)pickerView viewForRow:(NSInteger)row forComponent:(NSInteger)component reusingView:(UIView *)view {
    
        NSString *arrayName = [[NSString alloc] initWithFormat:@"column%d", component+1];
        NSArray *array = [self valueForKey:arrayName];
        [arrayName release];
        UIImage *image = [array objectAtIndex:row];
    
        if (!view){
           view = [[[UIImageView alloc] init] autorelease];
        }
        [(UIImageView*)view setImage:image];
        return view;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

That's pretty much it. I'm using Nokogiri to scrape a web page what has
I'm parsing an RSS feed that has an &#8217; in it. SimpleXML turns this
We're building an app, our first using Rails 3, and we're having to build
I'm trying to create an if statement in PHP that prevents a single post
I am trying to understand how to use SyndicationItem to display feed which is
Basically, what I'm trying to create is a page of div tags, each has
I'm new to using the Perl treebuilder module for HTML parsing and can't figure
link Im having trouble converting the html entites into html characters, (&# 8217;) i
I have a string like this: La Torre Eiffel paragonata all&#8217;Everest What PHP function
I've got a string that has curly quotes in it. I'd like to replace

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.