Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bitmapdata/MSCellAccessory
UITableViewCell accessoryType can easily customizing the colors. support Flat Design same as iOS7.
https://github.com/bitmapdata/MSCellAccessory
Last synced: 3 months ago
JSON representation
UITableViewCell accessoryType can easily customizing the colors. support Flat Design same as iOS7.
- Host: GitHub
- URL: https://github.com/bitmapdata/MSCellAccessory
- Owner: bitmapdata
- License: other
- Created: 2013-07-09T22:24:50.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2017-02-08T08:14:21.000Z (almost 8 years ago)
- Last Synced: 2024-07-19T11:04:45.698Z (4 months ago)
- Language: Objective-C
- Homepage:
- Size: 1.81 MB
- Stars: 467
- Watchers: 28
- Forks: 52
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome - MSCellAccessory - UITableViewCell accessoryType can easily customizing the colors. support Flat Design same as iOS7. (etc)
- awesome - MSCellAccessory - UITableViewCell accessoryType can easily customizing the colors. support Flat Design same as iOS7. (etc)
README
MSCellAccessory
============[![Version](https://cocoapod-badges.herokuapp.com/v/MSCellAccessory/badge.png)](https://cocoapod-badges.herokuapp.com/v/MSCellAccessory/badge.png)
[![Platform](https://cocoapod-badges.herokuapp.com/p/MSCellAccessory/badge.png)](https://cocoapod-badges.herokuapp.com/p/MSCellAccessory/badge.png)MSCellAccessory is a UITableViewCell accessoryType can easily customizing the colors. Many developer really want to customizing UITableViewCell accessoryType color. but, they using a customized png image are solved. but this method is not good. because Unnecessary to create an image file, and each would have to create all colors. and Loading it unnecessarily increases the capacity of the memory. If using a this library is more easily customizing accessoryType and more flexible via Programmatically.
#### iOS7 Flat Design
FLAT_DETAIL_DISCLOSURE: identical to iOS7 UITableViewCellAccessoryDetailDisclosureButton
FLAT_DETAIL_BUTTON: identical to iOS7 UITableViewCellAccessoryDetailButton
FLAT_DISCLOSURE_INDICATOR: identical to iOS7 UITableViewCellAccessoryDisclosureIndicator
FLAT_CHECKMARK: identical to iOS7 UITableViewCellAccessoryCheckmark
FLAT_UNFOLD_INDICATOR: Flat unfold indicator
FLAT_FOLD_INDICATOR: Flat fold indicatorFLAT_PLUS_INDICATOR: Flat plus indicator
FLAT_MINUS_INDICATOR: Flat minus indicator
#### Prior to iOS7
DETAIL_DISCLOSURE: identical to UITableViewCellAccessoryDetailDisclosureButton
DISCLOSURE_INDICATOR: identical to UITableViewCellAccessoryDisclosureIndicator
CHECKMARK: identical to UITableViewCellAccessoryCheckmark
UNFOLD_INDICATOR: Unfold indicator
FOLD_INDICATOR: Fold indicatorPLUS_INDICATOR: Plus indicator
MINUS_INDICATOR: Minus indicator
## Installation ##
MSCellAccessory is possible via CocoaPods. Just add the following to your Podfile. => `#import `
platform :ios
pod 'MSCellAccessory'Another way to, drag the included MSCellAccessory folder into your project. => `#import "MSCellAccessory.h"`
## Usage ##
Requirements: At least iOS5
These classes was written under the ARC. Be sure to specify `-fobjc-arc` the 'Compile Sources' Build Phase for each file if you aren't using ARC project-wide
## Sample Code ##
#import "MSCellAccessory.h"
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil)
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
if(indexPath.row == 0)
{
cell.accessoryView = [MSCellAccessory accessoryWithType:FLAT_DETAIL_DISCLOSURE colors:@[[UIColor colorWithRed:253/255.0 green:184/255.0 blue:0/255.0 alpha:1.0], [UIColor colorWithWhite:0.5 alpha:1.0]]];
}
else if(indexPath.row == 1)
{
cell.accessoryView = [MSCellAccessory accessoryWithType:FLAT_DETAIL_BUTTON color:[UIColor colorWithRed:132/255.0 green:100/255.0 blue:159/255.0 alpha:1.0]];
}
else if(indexPath.row == 2)
{
cell.accessoryView = [MSCellAccessory accessoryWithType:FLAT_DISCLOSURE_INDICATOR color:[UIColor colorWithRed:0/255.0 green:166/255.0 blue:149/255.0 alpha:1.0]];
}
else if(indexPath.row == 3)
{
cell.accessoryView = [MSCellAccessory accessoryWithType:FLAT_CHECKMARK color:[UIColor colorWithRed:0/255.0 green:123/255.0 blue:170/255.0 alpha:1.0]];
}
else if(indexPath.row == 4)
{
cell.accessoryView = [MSCellAccessory accessoryWithType:FLAT_UNFOLD_INDICATOR color:[UIColor colorWithRed:0/255.0 green:123/255.0 blue:170/255.0 alpha:1.0]];
}
else if(indexPath.row == 5)
{
cell.accessoryView = [MSCellAccessory accessoryWithType:FLAT_FOLD_INDICATOR color:[UIColor colorWithRed:0/255.0 green:123/255.0 blue:170/255.0 alpha:1.0]];
}return cell;
}## Release notes ###
#### Ver 1.1.3
* Rename AccessoryType to MSCellAccessoryType
* Add FLAT_PLUS_INDICATOR, FLAT_MINUS_INDICATOR, PLUS_INDICATOR, MINUS_INDICATOR#### Ver 1.1.2
* Discontinued TOGGLE_INDICATOR and change to UNFOLD_INDICATOR, FOLD_INDICATOR. flat also changed.
* Solved what if you change a UITableViewCell height, accessoryView this will affect change the right margin. ( #issue prior to iOS7 )
* Modified accessoryView frame, divided separately Plain Style and Grouped Style. ( #issue prior to iOS7 )#### Ver 1.1.1
* FLAT_DETAIL_DISCLOSURE, FLAT_DETAIL_BUTTON, DETAIL_DISCLOSURE types auto linking to `- (void)tableView:(UITableView *)tableView accessoryButtonTappedForRowWithIndexPath:(NSIndexPath *)indexPath` delegate method. when such types accessory touched is called. same as Apple.
* DETAIL_DISCLOSURE size and design modified.#### Ver 1.1.0
* Supported iOS7 Flat Design.
#### Ver 1.0.1
* Bug fixed.
* Modified more similar to the shape of the accessoryType.
#### Ver 1.0.0
* Initial commit## License ##
Software License Agreement (BSD License)
Copyright (c) 2013 SHIM MIN SEOK. All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in
the documentation and/or other materials provided with the
distribution.3. Neither the name of Infrae nor the names of its contributors may
be used to endorse or promote products derived from this software
without specific prior written permission.THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL INFRAE OR
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.## Contact ##