KeepBackgroundCell 0.2.0

KeepBackgroundCell 0.2.0

TestsTested
LangLanguage Obj-CObjective C
License MIT
ReleasedLast Release Jan 2016

Maintained by Tim Bodeit.



  • By
  • Tim Bodeit

Whenever a UITableViewCell is selected or highlighted, it automatically sets the backgroundColors of all its subviews to transparent. This makes sense for many views, such as UILabels to allow the selectedBackgroundView to show through inbetween the individual letters.

However with custom views, there are many cases where the backgroundColor should be maintained on selection of highlighting of the cell.

KeepBackgroundCell provides a way to turn of this transparency "feature" on individual UITableViewCells.

Usage

Swift
import KeepBackgroundCell

let cell = < Initialize UITableViewCell >
cell.keepSubviewBackground = true
Objective-C
#import <KeepBackgroundCell/KeepBackgroundCell.h>

UITableViewCell* cell = < Initialize UITableViewCell >
cell.keepSubviewBackground = YES;

Installation

KeepBackgroundCell is available through CocoaPods. To install it, simply add the following line to your Podfile:

pod "KeepBackgroundCell"

Author

Tim Bodeit, [email protected]

KeepBackgroundCell was inspired by this answer by Yatheesha B L on stackoverflow.

License

KeepBackgroundCell is available under the MIT license. See the LICENSE file for more info.