mirror of
https://github.com/zhigang1992/redpotion.git
synced 2026-01-12 22:51:36 +08:00
14 lines
229 B
Ruby
14 lines
229 B
Ruby
class TaskCell < PM::TableViewCell
|
|
def on_load
|
|
apply_style :cell
|
|
|
|
find(self.contentView).tap do |q|
|
|
@title = q.append!(UILabel, :cell_title)
|
|
end
|
|
end
|
|
|
|
def my_title=(value)
|
|
@title.text = value
|
|
end
|
|
end
|