From 90f9dcdc79034fd112be26f0865ae39f20e62399 Mon Sep 17 00:00:00 2001 From: Mathias Claassen Date: Thu, 7 Jul 2016 14:00:17 -0300 Subject: [PATCH] added backward compatibility warning --- Source/Core/BaseRow.swift | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Source/Core/BaseRow.swift b/Source/Core/BaseRow.swift index 39501c98a..1cf79b0df 100644 --- a/Source/Core/BaseRow.swift +++ b/Source/Core/BaseRow.swift @@ -96,6 +96,9 @@ public class BaseRow : BaseRowType { */ public func highlightCell() {} + @available(*, unavailable, message="Deprecated. Use 'highlightCell' instead.") + public func hightlightCell() { highlightCell() } + /** Method that is responsible for unhighlighting the cell. */