Monotouch是否缺少此方法实现 – 本机API绑定?
我需要这个方法在shouldChangeCharactersInRange中实现一些自定义字符串处理逻辑
string text = field.Text; string result; result = text.Substring (0,range.Location) + replacement + text.Substring (range.Location + range.Length);