Reputation: 127
Is there a way to hide and show a StyledStringElement
in MonoTouch.Dialog?
I have only found Dispose()
, but nothing happened.
Upvotes: 2
Views: 271
Reputation: 43553
You do not hide an Element
by itself. You add/insert them from a Section
and remove them if you do not want them anymore.
You might also need to reload the DialogViewController
to see the effect of adding/removing elements.
Upvotes: 4