使用parse.com在视图之间传递数据?

时间:2014-10-25 14:04:30

标签: c# ios xamarin.ios xamarin

我正在尝试将以下内容附加到xamrian ios应用程序中的表视图中。我有代码执行和下拉信息,但我不知道如何填充表视图并将信息传递给行点击句柄。这样我就可以将信息传递给详细视图。如果somene可以建议那么好。

// User's location
var userGeoPoint = ParseUser.CurrentUser.Get("locationGeo");
// Create a query for places
var query = ParseObject.GetQuery("clinics");
//Interested in locations near user.
query = query.WhereNear("locationGeo", userGeoPoint);
// Limit what could be a lot of points.
query = query.Limit(10);
// Final list of nearby places
var placeObjects = await query.FindAsync();

1 个答案:

答案 0 :(得分:0)