Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/unixpickle/ANColorPicker
A custom mac-like color well for iPhone
https://github.com/unixpickle/ANColorPicker
Last synced: 3 months ago
JSON representation
A custom mac-like color well for iPhone
- Host: GitHub
- URL: https://github.com/unixpickle/ANColorPicker
- Owner: unixpickle
- Created: 2010-11-29T17:45:43.000Z (about 14 years ago)
- Default Branch: master
- Last Pushed: 2011-08-12T23:43:14.000Z (over 13 years ago)
- Last Synced: 2024-04-14T18:18:23.965Z (10 months ago)
- Language: Objective-C
- Homepage:
- Size: 1.42 MB
- Stars: 34
- Watchers: 5
- Forks: 9
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome - ANColorPicker - A custom mac-like color well for iPhone (etc)
- awesome - ANColorPicker - A custom mac-like color well for iPhone (etc)
README
# Deprecated
Find the more advanced project at [RSully/RSColorPicker](https://github.com/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)