App License (Binary Only)


  • Perpetual license (does not expire)
  • 1 site, unlimited servers
  • No distribution (hosted use only)
  • Commercial use allowed
  • No code modifications
  • 6 months support
$19.99 Read License

Developer License (source code included)


  • Perpetual license (does not expire)
  • Unlimited applications
  • Can distribute binary products only
  • Commercial use allowed
  • 6 months support
$49.99 Read License

Distributor License (Source code included)


  • Perpetual license (does not expire)
  • 5 projects
  • Can distribute code and binary products
  • Commercial use allowed
  • 6 months support
$199.99 Read License

14 Day money-back guarantee

Full refund within 14 days of purchase date.

You need to log-in or create an account
  • Create an account
  • Log-in

Please use your real name.

Activation link will be sent to this address.

Minimum 8 characters

Enter your password again

Clicking this button confirms you read and agreed to the terms of use and privacy policy.

  • Released: Jun 13, 2012
    Last Update: Jun 13, 2012
  • Language: Objective-C
    Framework: UIKit
    Platform(s): iPhone
  • Time / costs savings: 40h / $2400 *

MarqueeView (Scrolling Marquee for iOS)

MarqueeView (Scrolling Marquee for iOS)
Developed by Sarp Erdag, Released Jun 13, 2012

Easily create fully customizable, auto-scrolling, infinitely looping marquees with any custom content you want. Great for building scrolling galleries, news tickers and auto-scrolling taglines.

Objective-C

Tags: autoscroll , ios , marquee , scroller

SEMarqueeView for iOS is a super easy to use component that lets you create scrolling marquees. It is a great component with which you can create scrolling galleries, news tickers, auto-scrolling tag-lines etc.

The behavior and usage is just like you use a UITableView with delegate methods.

The items you add in a MarqueeView are cloned automatically to create an infinite scrolling effect.

alt text

Features

  • Easily create scrolling marquees with any custom content you want.
  • Ability to fully customize the cell designs.
  • Ability to change the number of cells.
  • Ability to change auto-scroll speed.
  • Ability to change scroll direction. Choose either from left to right or the opposite.
  • Efficient memory usage, recycling views, completely crash-free.
  • Ability to use multiple MarqueeViews in a single view and control them separately.
  • Compatible with iOS4.0+ SDK.
  • Can be used both for iPhone and iPad projects.
  • Includes demo app Xcode project for quick start.

Requirements

No external libraries are required. Just drop the framework file in your existing project and you are good to go!

Integration Guide

1) Drag & drop SEMarqueeView.framework to your project.

2) Add this line on top whatever view controller you want to use it on.

#import 

3) Create a SEMarqueeView object and add it as a subview.

SEMarqueeView *mView = [[SEMarqueeView alloc] initWithFrame:CGRectMake(0, 0, 320, 200) andSpeed:100 andDirection:SCROLL_LEFT];
mView.delegate = self; [self.view
addSubview:mView];

4) Implement delegate methods to configure content and you are done!

- (int) numberOfCellsInMarqueeView:(SEMarqueeView *)marqueeView {
    return 5;
}

- (CGSize) marqueeView:(SEMarqueeView *)marqueeView sizeOfCellAtIndex:(int)index {
    return CGSizeMake(200, 200);
}

- (UIView *) marqueeView:(SEMarqueeView *)marqueeView cellAtIndex:(int)index {

    UIView *view = [[[UIView alloc] init] autorelease];
    view.backgroundColor = [UIColor redColor];
    return view;
}

- (void) marqueeView:(SEMarqueeView *)marqueeView didSelectItemAtIndex:(int)index {
        NSLog(@"tapped on cell %d", index);
}

Want to see it in action?

Send me a mail at sarp.erdag [at] apperto.com and I will send you a demo over TestFlight.

User Reviews

No reviews have been submitted yet.
Read all 2 comments »

Questions & Comments


Or enter your name and Email
  • jay bagtharia 6 months ago
    i am not able to find SEMarqueeView framework. From where i must download it ??
    please ans me as fast possible ...
    • Sarp Erdag Developer 6 months ago
      click on the "view pricing" button on the top right and you will be able to download
You must be logged-in to vote. Log-in to your account or register now.