在montouch中输入uitextfield的Casting?

时间:2013-04-01 11:48:30

标签: xamarin.ios uitextfield

我需要创建UITextField作为我从Service获得的字符串的名称。 我尝试了以下方式

string name = "Sample";
UITextField name = new UITextField();

但我已经定义了数据类型错误。

请给我解决方案。

先谢谢你,

1 个答案:

答案 0 :(得分:2)

您不能将两个变量命名为相同。这是一个普遍的C#语法问题。

如果你这样做,它是否有效:

string name = "Sample";
UITextField nameField = new UITextField();