diff --git a/Code/UI/RKAbstractTableController.h b/Code/UI/RKAbstractTableController.h index e35184e7..5e0fe5d2 100644 --- a/Code/UI/RKAbstractTableController.h +++ b/Code/UI/RKAbstractTableController.h @@ -57,12 +57,6 @@ extern NSString* const RKTableControllerDidBecomeOnline; /** Posted when the table view model has transitioned from online to offline */ extern NSString* const RKTableControllerDidBecomeOffline; -/** Used in to change the mode of the controller's table cell selection/deselection */ -typedef enum { - RKTableViewCellSelectionMomentary = 0, - RKTableViewCellSelectionFixed = 1 -} RKTableViewCellSelectionType; - @protocol RKTableControllerDelegate; /** @@ -93,7 +87,6 @@ typedef enum { @property (nonatomic, assign) BOOL canEditRows; @property (nonatomic, assign) BOOL canMoveRows; @property (nonatomic, assign) BOOL autoResizesForKeyboard; -@property (nonatomic, assign) RKTableViewCellSelectionType cellSelectionType; ///////////////////////////////////////////////////////////////////////// /// @name Instantiation diff --git a/Code/UI/RKAbstractTableController.m b/Code/UI/RKAbstractTableController.m index e87ed54e..2b9db8de 100644 --- a/Code/UI/RKAbstractTableController.m +++ b/Code/UI/RKAbstractTableController.m @@ -82,7 +82,6 @@ static NSString* lastUpdatedDateDictionaryKey = @"lastUpdatedDateDictionaryKey"; @synthesize canMoveRows = _canMoveRows; @synthesize autoResizesForKeyboard = _autoResizesForKeyboard; @synthesize emptyItem = _emptyItem; -@synthesize cellSelectionType = _cellSelectionType; @synthesize cellSwipeViewsEnabled = _cellSwipeViewsEnabled; @synthesize cellSwipeView = _cellSwipeView; @@ -143,7 +142,6 @@ static NSString* lastUpdatedDateDictionaryKey = @"lastUpdatedDateDictionaryKey"; _footerItems = [NSMutableArray new]; _showsHeaderRowsWhenEmpty = YES; _showsFooterRowsWhenEmpty = YES; - _cellSelectionType = RKTableViewCellSelectionMomentary; // Setup autoRefreshRate to (effectively) never _autoRefreshFromNetwork = NO;