From 9f8825aa0f2ab3e1410b57ff617c69c65d6703f7 Mon Sep 17 00:00:00 2001 From: Rob Jonson Date: Wed, 18 Sep 2019 17:54:56 +0100 Subject: [PATCH] expose rows var in HSTVSection --- HSTableView.podspec | 2 +- HSTableView/HSTVSection.swift | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/HSTableView.podspec b/HSTableView.podspec index 604558d..d57b277 100644 --- a/HSTableView.podspec +++ b/HSTableView.podspec @@ -16,7 +16,7 @@ Pod::Spec.new do |s| # s.name = "HSTableView" - s.version = "1.2.0" + s.version = "1.2.1" s.summary = "A simpler, more elegant UITableView using objects, blocks instead of delegates" # This description is used to generate tags and improve search results. diff --git a/HSTableView/HSTVSection.swift b/HSTableView/HSTVSection.swift index 4b3e068..944407f 100644 --- a/HSTableView/HSTVSection.swift +++ b/HSTableView/HSTVSection.swift @@ -10,7 +10,7 @@ import Foundation /// HSTVSection holds an array of HSTVRows public class HSTVSection { - var rows:[HSTVRowInfo]=[HSTVRowInfo]() + public var rows:[HSTVRowInfo]=[HSTVRowInfo]() weak var table: HSTableView!