mirror of
https://github.com/zhigang1992/RubyMotion.git
synced 2026-04-11 11:39:09 +08:00
10 lines
189 B
Ruby
10 lines
189 B
Ruby
def init
|
|
super
|
|
sections.last.pop
|
|
end
|
|
|
|
def format_object_title(object)
|
|
title = "Method: #{object.name(true)}"
|
|
title += " (#{object.namespace})" if !object.namespace.root?
|
|
title
|
|
end |