diff --git a/README.md b/README.md index b5e963b..2219125 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ Build Status Swift 2.2 compatible Carthage compatible - CocoaPods compatible + CocoaPods compatible Platform iOS License: MIT

diff --git a/Sources/TableSection.swift b/Sources/TableSection.swift index 41d34d3..02ff134 100644 --- a/Sources/TableSection.swift +++ b/Sources/TableSection.swift @@ -61,7 +61,7 @@ public class TableSection { self.headerView = headerView self.footerView = footerView } - + // MARK: - Public - public func clear() { @@ -83,6 +83,15 @@ public class TableSection { public func insert(rows rows: [Row], at index: Int) { self.rows.insertContentsOf(rows, at: index) } + + public func replace(rowAt index: Int, with row: Row) -> Bool { + + if index >= 0 && index < rows.count { + rows[index] = row + return true + } + return false + } public func delete(index index: Int) { rows.removeAtIndex(index) diff --git a/TableKit.podspec b/TableKit.podspec index 1233c34..06d3c55 100644 --- a/TableKit.podspec +++ b/TableKit.podspec @@ -2,7 +2,7 @@ Pod::Spec.new do |s| s.name = 'TableKit' s.module_name = 'TableKit' - s.version = '1.1.1' + s.version = '1.1.2' s.homepage = 'https://github.com/maxsokolov/TableKit' s.summary = 'Type-safe declarative table views. Swift 2.2 is required.'