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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T09:28:24+00:00 2026-05-24T09:28:24+00:00

i am using one for loop for creating labels those are having text stored

  • 0

i am using one for loop for creating labels those are having text stored in nsarray.I want to display 1st labeltext color red and 2nd labeltext white and 3rd red ,4th white,5th red and 6th white ……….etc for all the labels that are stored in an array how to do this.help me on that ..can anyone shathanks in advance

  • 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-24T09:28:25+00:00Added an answer on May 24, 2026 at 9:28 am

    If you want to alternate between two colors the simplest thing is to use the modulo operator (%) to figure out if you are on an even or odd label index.

    Here is one way of doing this:

    int labelIndex = 0;
    for (NSString *labelText in labelArray)
    {
        UILabel *label = [[[UILabel alloc] init] autorelease];
        label.text = labelText;
        label.textColor = (labelIndex % 2) ? [UIColor whiteColor] : [UIColor redColor];
    
        // Do something with the label here.
    
        labelIndex++;
    }
    

    You can also use this technique to alternate between more than two different colors, but then I would suggest that you put the colors into an array of their own and index that array using (labelIndex % numColors) or something similar.

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

Sidebar

Related Questions

When using one's own iPhone for development it's easy enough to access any crash
When using one of the various JDBC template methods I am confused on how
I am using one master page.In that I am registering java scripts and checking
I am using one of snook.ca script for simple slideshow. Here it is in
When you move beyond using one instance for your database, what is the best
I am using one UIViewController as shown: @interface RssViewController : UIViewController <UITableViewDataSource,UITableViewDelegate,BlogRssParserDelegate> I am
I have one folder synced between two computers (using one of online sync tools).
Is there a benefit to using one over the other? In Python 2, they
I'd like to split a string using one or more separator characters. E.g. a
When communicating to a SQL Server database using one of the typical systems, ODBC,

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.