michaelengland/FlipTheSwitch

View on GitHub
Classes/FlipTheSwitch/iOS/FTSFeatureCell.m

Summary

Maintainability
Test Coverage
#import "FTSFeatureCell.h"

@implementation FTSFeatureCell

#pragma mark - Action

- (IBAction)featureToggled:(id)sender
{
    [self.delegate flipTheSwitchCellDidToggleFeature:self];
}

@end