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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T03:51:00+00:00 2026-06-04T03:51:00+00:00

I have this code: //Value of userCount is 25 auxCount = 0; for (int

  • 0

I have this code:

//Value of userCount is 25
auxCount = 0;
for (int y_axis=0; y_axis<=8; y_axis++)  //ROWS
    {
        for (int x_axis=0; x_axis<=2; x_axis++) //COLUMNS
        {
            if (auxCount<userCount) {     
                NSLog(@"auxCount: %i\n",auxCount);
                NSLog(@"userCount: %i\n\n",userCount);
                UIButton *btn=       [[UIButton alloc] initWithFrame:CGRectMake(16+100*x_axis,115.0*y_axis,88.0 ,88.0)];
                UILabel *userLabel = [[UILabel alloc] initWithFrame:CGRectMake(16+100*x_axis,90+115.0*y_axis, 88.0, 15.0)];
                userLabel.textAlignment = UITextAlignmentCenter;
                userLabel.text = mensaje;

                btn.backgroundColor=[UIColor groupTableViewBackgroundColor];
                [scrollViewUsers addSubview:btn];
                [scrollViewUsers addSubview:userLabel];

                auxCount++;

            }
        }
    }

With this I want a matrix with 3 columns and X rows, but only displays 3 rows and the third row only displays 1 button. And in Debug area appears:
auxCount: 0
userCount: 25

auxCount: 4
userCount: 25

auxCount: 8
userCount: 25

auxCount: 12
userCount: 25

auxCount: 16
userCount: 25

auxCount: 20
userCount: 25

auxCount: 24
userCount: 25

auxCount increments by 4 by 4. I think that is because the if instructions are executed only by the first for loop but I don’t know why.
Please, I need your help.

ps: sorry for my english!!

  • 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-04T03:51:02+00:00Added an answer on June 4, 2026 at 3:51 am

    just try this for loops as i have used in my app it worked for me.

    to find out the number of rows depending on number of columns and total count

    int r;
    float rem = [dao libraryCount] % kCol;
    if(rem == 0.0f)
        r = floor([dao libraryCount]/kD);
    else
        r = ceil([dao libraryCount]/kD);
    

    here r is for number if row [dao libraryCount is total number of items and kCol is fix number of column for you it is 3 and kD is same as kCol only deference is it is type of float ie 3.0 in your case

    then use the for loop as below

    for (int row = 0; row < r; ++row)
    {
        for (int col = 0; col < kCol; ++col)
        {
           //Your Code to display or any thing
        }
    }
    

    for auxCount use this code

    int index = (row * kCol) + col;
            if(index < [dao libraryCount])
            {
                //Your Code to display or any thing
            }
    

    put this in side both for loop instead of using ++
    just change the both for loops and replace if condition with appropriate variables

    Enjoy Coding 🙂
    And Good Luck

    any help is needed just comment me i will love to help you

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

Sidebar

Related Questions

I have this code : int flags = some integer value; compte.actif = !Convert.ToBoolean(flags
Using MATLAB, I have this code: value = input('>> Enter a value: '); and
I have this code right now to get the row value from jquery grid..
I have this code: <script type=text/javascript> var maxLength=10; function charLimit(el) { if (el.value.length >
So I have this code inside my lib/ folder: class GlobalConfig::SetHelper def self.yes_no_input(configuration) value
Hi I have this code in my view.. <%=Html.DropDownList(ProductTemplate,new SelectList(Model.ProductTemplate,Value,Text))%> I know if this
I have this javascript code <Script> function getGroupId(){ var group=document.getElementById(selectedOptions).value; var groupFirstLetter=group.substring(2); } </Script>
I have this piece of code: private void myFunc(){ obj = doSomething(); //If value
I have this snippet of code below. I want to pass the value of
I have this controller in Code Igniter application. A value is initialized in the

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.