GitXplorerGitXplorer
u

ANColorPicker

public
33 stars
9 forks
1 issues

Commits

List of commits on branch master.
Unverified
446c0e97da84f3b536d1b80d1eea2d029e27dba0

TYPO

committed 13 years ago
Unverified
7486ca26ea7079afff8dc3faadabdf61d106784d

Readme update, ref new proj

committed 13 years ago
Unverified
f6154ab4555fa8d20940b11d9b190d31fe6b663d

Updated README, ref new proj

committed 13 years ago
Unverified
bad87f896d613251af24c3b463a9b91e0842417f

Updates

committed 13 years ago
Unverified
6e3ec8fe2ab973e6f8ab8ed2c67f48de917d32a9

Uglyyy

committed 13 years ago
Unverified
f952561699265e4d5dd4d6c3158c894585a3afa1

Added setDrawsBrightnessChanger: method

uunixpickle committed 14 years ago

README

The README file for this repository.

Deprecated

Find the more advanced project at RSully/RSColorPicker. This project (ANColorPicker) uses images and requires a specific size for the color picker views, whereas RSColorPicker is dynamic in both size and generation.

About ANColorPicker

"Use this simple color picker to get colors that a user picks. The color picker must be a certain size, and requires several images files in the bundles package contents. The picker is very easy to use with code and to the user. Enjoy :)!"

Usage (Code samples n' stuff)

Very basic example:

ANColorPickerViewController *colorPick = [[ANColorPickerViewController alloc] init];
UINavigationController *nav = [[UINavigationController alloc] initWithRootViewController:colorPick];
[self.window addSubview:nav.view];

Actual example: See ANColorPickerViewController.m (-viewDidLoad)