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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 2, 20262026-06-02T17:44:11+00:00 2026-06-02T17:44:11+00:00

I am using this for scrolling the uilabel text and this for glow effect.

  • 0

I am using this for scrolling the uilabel text and this for glow effect. However i want both glow and marquee uilabel text, i have replaced UILabel with RSSGlowLabelclass from above code. but i am not getting the glow effect. can any body tell me how can i achieve that.

  • 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-02T17:44:13+00:00Added an answer on June 2, 2026 at 5:44 pm

    It’s probably much easier if you code it yourself. Start with this:

    float alph = 0.7;
    
    - (void)viewDidLoad {
        [super viewDidLoad];
        glowLabel = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, 200, 100)];
        NSString *string = @"some text";
        glowLabel.text = string;
        glowLabel.textColor = [UIColor blueColor];
        [self.view addSubview:glowLabel];
        glowLabel.alpha = alph;
        [NSTimer scheduledTimerWithTimeInterval:0.4
                                       target:self
                                       selector:@selector(glowMarquee)
                                       userInfo:nil
                                       repeats:YES];
    }
    
    -(void)glowMarquee {
        alph = (alph == 1) ? 0.7 : 1; // Switch value of alph
        [UIView beginAnimations:@"alpha" context:NULL];
        [UIView setAnimationDuration:0.4];        
        glowLabel.alpha = alph;
        [UIView commitAnimations];
    }
    

    Now just add the marquee logic to the glowMarquee method, or create a separate method for the marquee and another timer to control it, so the two can be controlled independently.

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

Sidebar

Related Questions

I have one page design with scrolling eased by jquery using this code: function
I have a custom adapter extended from the SimpleCursorAdapter. Using this I'm binding a
I have a website scrolling horizontally using this script: http://tympanus.net/Tutorials/WebsiteScrolling/index.html Sometimes with this build
I'm using this to disable the 'scrolling' effect the spacebar has in a browser.
Using this file as source, I have a situation where I need to retrieve
I was wondering if anyone can help me with this scrolling problem using the
I'm using this piece of code from a fellow SO user: $(#rightSubMenu).mousemove(function(e){ console.log('executed'); var
Im making a site with a smooth scrolling animation using this plug in: http://www.smoothdivscroll.com/
In my ASP.Net page, I am loading data from server while scrolling using jQuery
I have a fixed div setup using this: .box { position: fixed; width: 600px;

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.