我正在尝试将以下内容附加到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();
答案 0 :(得分:0)
Xamarin为使用tableviews做了很好的演练。
http://developer.xamarin.com/guides/ios/user_interface/tables/part_2_-_populating_a_table_with_data/