Skip to content

Commit

Permalink
Merge pull request #33 from hotchpotch/fixed_GestureTable_error
Browse files Browse the repository at this point in the history
Fixed GestureTable build error
  • Loading branch information
Watson1978 committed Oct 24, 2013
2 parents 7399c93 + a3fa27a commit 5a0867c
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion ios/GestureTable/app/transformable_cells.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
class TransformableTableViewCell < UITableViewCell
attr_accessor :finishedHeight, :tintColor
attr_accessor :finishedHeight

def self.transformableTableViewCellWithStyle(style, reuseIdentifier: reuseIdentifier)
case style
Expand All @@ -11,6 +11,14 @@ def self.transformableTableViewCellWithStyle(style, reuseIdentifier: reuseIdenti
raise ArgumentError, "Style must be :pullDown or :unfolding"
end
end

def tinyColor=(tinyColor)
@tinyColor = tinyColor
end

def tinyColor
@tinyColor
end
end

class UnfoldingTableViewCell < TransformableTableViewCell
Expand Down

0 comments on commit 5a0867c

Please sign in to comment.