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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T18:25:38+00:00 2026-05-26T18:25:38+00:00

i want to add buttons dynamically along with the scrollview ,suppose there are like

  • 0

i want to add buttons dynamically along with the scrollview ,suppose there are like 100 buttons to be added on scrollview it would be humongous to add it on nib file ,so i want to know how to write the code , add buttons dynamically on top of image view on scrollview

  • 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-05-26T18:25:38+00:00Added an answer on May 26, 2026 at 6:25 pm

    What you need to do is create a loop, create UIButtons. Setup buttons & add them as subviews to UIScrollView. Code follows.

    NSUInteger i;
    int xCoord=0;
    int yCoord=0;
    int buttonWidth=100;
    int buttonHeight=50;
    int buffer = 10;
    for (i = 1; i <= 100; i++)
    {
        UIButton *aButton = [UIButton buttonWithType:UIButtonTypeCustom];
        aButton.frame     = CGRectMake(xCoord, yCoord,buttonWidth,buttonHeight );
        [aButton addTarget:self action:@selector(whatever:) forControlEvents:UIControlEventTouchUpInside];
        [scrollView addSubview:aButton];
    
        yCoord += buttonHeight + buffer;
    }
    [scrollView setContentSize:CGSizeMake(700, yCoord)];
    

    What i am basically doing here is having variables for X & Y co-ordinates. As I am looping through to create UIButtons am creating the appropriate CGRect struct to decide where to place the button in the UIScrollView. After adding that button to scrollView, change the X & Y values to where ever you want to place the next button.

    At the end dont forget to set the ContentSize for scrollview so that it enables scrolling.

    PS: All this code is typed free hand, might have small syntactical errors but the logic is solid.

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

Sidebar

Related Questions

I have a HBox and I dynamically add Buttons into it. I want to
I ve created the 8 buttons dynamically.I want to add all these buttons to
I have been developing an Android RSS news reader.I want to add two buttons
I have a loop displaying records, and I want to add submit buttons to
I tried to add buttons, textboxes and text to tableview. I want the row
I have several wpf pages with update/delete/add buttons. I want to display to the
I want to add haptic feedback to my application's buttons and control them programmatically
I am using C#.net I want to add custom edit/delete buttons to my GridView1
I want to generate buttons dynamically. The code below generates 2 buttons. But how
I'm trying to create a buttons dynamically and add them to table layout panel

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.