Important facts about commercial licenses

  • Licenses are perpetual. They do not expire and do not need to be renewed.
  • Licenses can be upgraded. You can upgrade to a more expensive license later paying only the difference in cost.
  • Pay attention to the distribution type - Hosted (sites / servers), binary (applications) or source (includes all the others). Choose according to your needs (more below).
  • All licenses allow commercial use unless otherwise indicated.
  • Read the full license by clicking on the icon.
  • Read more about licenses in our handy license guide.
$49

Single App License

1 application Binary restricted distribution 6 months support
$149

Multiple App License

5 applications Binary restricted distribution 6 months support
$299

Developer License

Unlimited projects Source and binary distribution 6 months support
You need to log-in or create an account
  • Create an account
  • Log-in
  • Please use your real name.
  • Account activation link will be sent to this address.
  • Minimum 8 characters

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

(1 ratings)

Colored ListView

Colored ListView
Developed by Mos IT Ltd., Released Apr 29, 2012

Colored ListView is a simple and flexible list view inspired by the successful Clear app that can be navigated and managed quickly using gestures. Includes 7 customizable color schemes.

Objective-C

Tags: colored , list , listview , tableview

alt text

Keep it simple!

Simple, Flexible, Customizable

  • Easy to integrate. Just couple of lines of code.
  • Exclusive 7 customizable color themes.
  • Create your own color themes in minutes.
  • Flexible interface using gesture recognizers to manage list view.
  • Universal support. (Both iPhone and iPad are supported)
  • Includes demo app XCode Project
  • Supports iOS 4.0+ as base SDK.

alt text

Back to top

Usage Guide

  • Swipe left to delete item.
  • Swipe right to complete item.
  • Swipe left completed item to delete permanently.
  • Swipe right completed item to mark as undo.
  • Scroll down to add new item.
  • Double Tap to edit item.
  • Tap to select item.
  • Long press to move item within list view.

alt text

alt text

Back to top

Installation Guide

1. Copy CListView folder into your project's XCode files view

2. Include CListView header file to your viewController.

#import "CListView.h"

3. Add delegate to header file of your viewController.

@interface ViewController : UIViewController  {

}

4. Init CListView class in your viewController with array and editing mode

Set editingMode YES to enable all gesture functions of your list view. If you are going to use it read only; set editingMode NO.

CListView *cListView = [[CListView alloc] initWithFrame:self.view.frame];

[cListView setItems:[[NSMutableArray alloc] initWithObjects:@"First Item", @"Second Item", @"Third Item", @"Fourth Item", nil]];

[cListView setEditable:TRUE];       

cListView.delegate = self;

[self.view addSubview:_clistView];

5. Add delegate methods

- (void)listItemSelected:(CListViewItem *)_clistViewItem {
}

- (void)listItemDeleted:(CListViewItem *)_clistViewItem {
}

- (void)listItemAdded:(CListViewItem *)_clistViewItem {
}

- (void)listItemMarked:(CListViewItem *)_clistViewItem {
}

- (void)listItemUnMarked:(CListViewItem *)_clistViewItem {
}

- (void)listItemMoved:(CListViewItem *)_clistViewItem fromIndex:(NSInteger)_fromIndex toIndex:(NSInteger)_toIndex {
}

- (void)listItemEditingEnded:(CListViewItem *)_clistViewItem {
}
View all 1 reviews »

User Reviews

  • 1 of 2 people found this review helpful Markelsoft 2 months ago
    fine for iPhone but needs to be updated with both iPad and iPhone in mind.
    Flag
    Was this helpful? Yes No
Read all 6 comments »

Questions & Comments


Or enter your name and Email
  • Sangwoo Nam 11 months ago
    So this is basically just the source code for the Clear app? Could I use this as a standalone application?
    • Mos IT Ltd. Developer 11 months ago
      Hello Sangwoo,

      This component is inspired by the Clear app, it is not the source code of that app. And yes you can use this component for any standalone application you like.
    • Sangwoo Nam 5 months ago
      Would I have to change anything or can I publish the app as is?
  • Sudhanshu Srivastava 11 months ago
    How I can download the CListView code?
    • Mos IT Ltd. Developer 11 months ago
      You have to purchase Colored ListView to download code and full working sample. You can get you money back if it does not meet your needs.
    • Sudhanshu Srivastava 11 months ago
      Thanx!
You must be logged-in to vote. Log-in to your account or register now.