当StringElement具有与之关联的点击操作时,如何使其显示UITableViewCellAccessory.DisclosureIndicator?
我可以将其子类化,并推出自己的子类,但我更愿意坚持使用MonoTouch.Dialog框架。
StringElement s = new StringElement (item.Title);
s.Tapped += delegate { ShowDomainItem (s); };发布于 2011-04-16 22:59:50
尝试使用允许配置比StringElement多得多的设置的StyledStringElement。
发布于 2013-02-15 06:48:31
对Miguel所说的进行扩展:
new StyledStringElement ("Movie Cast") { Accessory = UITableViewCellAccessory.DisclosureIndicator }
https://stackoverflow.com/questions/5618541
复制相似问题