当 StringElement 具有与之关联的 Tapped Action 时,如何让它显示 UITableViewCellAccessory.DisclosureIndicator ?
我可以将其子类化并推出自己的,但我宁愿坚持使用 MonoTouch.Dialog 框架。
StringElement s = new StringElement (item.Title);
s.Tapped += delegate { ShowDomainItem (s); };
当 StringElement 具有与之关联的 Tapped Action 时,如何让它显示 UITableViewCellAccessory.DisclosureIndicator ?
我可以将其子类化并推出自己的,但我宁愿坚持使用 MonoTouch.Dialog 框架。
StringElement s = new StringElement (item.Title);
s.Tapped += delegate { ShowDomainItem (s); };