我是xamarin的新手,我正在试图找出如何检索要在文本框中显示的数字。我正在使用xamarin的示例azure移动服务作为基础,并尝试根据我的目的修改它。当我尝试从不是TableViewCell的类中检索数据时,会出现问题。下面的代码是我正在尝试的
private async Task RefreshAsync()
{
NSIndexPath indexPath = new NSIndexPath();
var label = new UILabel(new RectangleF(200, 200, 200, 200));
View.Add(label);
label.Font = UIFont.SystemFontOfSize(35);
while (true)
{
int my = todoService.Items2[indexPath.Row].t1;
RefreshControl.BeginRefreshing();
await todoService.RefreshDataAsync();
RefreshControl.EndRefreshing();
label.Text = my.ToString();
await Task.Delay(30000);
}}
它没有显示任何错误,但是当它编译时它不会运行并抛出异常。有没有办法在不使用索引路径的情况下将数据导入标签并每隔30秒自动更新一次?任何建议都非常感谢。我提前谢谢你。