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 7929069
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T19:57:03+00:00 2026-06-03T19:57:03+00:00

I have code that creates, adds and tags unbuttons in a uiview which is

  • 0

I have code that creates, adds and tags unbuttons in a uiview which is itself in a uiscrollview. At a certain point I try to change (background color and image) some of the unbuttons with certain tags . The problem is if I choose the first button with tag 0 the for loop bombs out for the image change because either uiscrollview or the uiview do not have that method available. But I am trying to only target the unbuttons within the view (all synched up). If I pick any other buttons it works as expected. I could offset the tag from 0 to one instead but I want to know why my for loop does not work.

for (int i=0; i<[devicesArray count]; i++) {
    NSLog(@"red %i", i);

    for (UIView *subview in [uiv_ButtonsView subviews]) {
        if([subview isKindOfClass:[UIButton class]]) {
            int number = [[devicesArray objectAtIndex:i] intValue];
            subview.alpha=1.0;
            [[subview viewWithTag:number] setBackgroundColor:[UIColor redColor]];
            UIButton *btttn = (UIButton *)[subview viewWithTag:number];
            [btttn setBackgroundImage:nil forState:UIControlStateNormal];
        }
    }
}

Thanks – this is now working code:

for (int i=0; i<[devicesArray count]; i++) {
    int number = [[devicesArray objectAtIndex:i] intValue];
    [[uiv_Quilt viewWithTag:number] setBackgroundColor:[UIColor redColor]];
    [[uiv_Quilt viewWithTag:number] setBackgroundImage:nil forState:UIControlStateNormal];
}
  • 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-03T19:57:05+00:00Added an answer on June 3, 2026 at 7:57 pm
    for (UIView *subview in [uiv_ButtonsView subviews]) {
    

    subView is a subview of uiv_ButtonsView

    if([subview isKindOfClass:[UIButton class]]) {
    

    subView is a UIButton

    [[subview viewWithTag:number] setBackgroundColor:[UIColor redColor]]; 
    

    Hmmm. Now you’re getting a subview of the UIButton, with tag 0 – this is the default tag for all views. You’re in the private view hierarchy of the UIButton here, we’ve no idea what this is.

    UIButton *btttn = (UIButton *)[subview viewWithTag:number]; 
    

    Same again – you’ve told the compiler that you are getting a button back from this call, but you won’t be. subView is already a button, buttons don’t have other buttons as subviews.

    [btttn setBackgroundImage:nil forState:UIControlStateNormal];
    

    So this line of code won’t work.

    I don’t see why you either do all your operations on subView, or use [uiv_ButtonsView viewWithTag:xx] to get your button. In the latter case, you will need to start your tags at 1, since all views have a default tag of 0.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have all of this code that creates new divs and adds innerHTML. Within
I have some code below that creates a RelativeLayout and adds a button to
So I'm running through a list of things and have code that creates an
I have some code that creates a Process instance and later starts it. There's
I have some code that creates a bunch of UITextViews and puts them into
I have the following code that creates a serverside object of the xmlhttp class.
I have some code that dynamically creates a new button through JavaScript that when
I have some javascript code that creates an img tag with a mouseover callback,
I have some Javascript code that creates 2 arrays: One for Product Category and
I have the following code that creates the meta-description. I'm getting a 0 as

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.