作者热门文章
- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
class CallHistoryDataSource : UITableViewSource
{
CallHistoryController controller;
public CallHistoryDataSource (CallHistoryController controller)
{
this.controller = controller;
}
public override int RowSelected(UITableView tableView, int section)
{
return controller.PhoneNumbers.Count;
}
//
// Returns a table cell for the row indicated by row property of the NSIndexPath
// This method is called multiple times to populate each row of the table.
// The method automatically uses cells that have scrolled off the screen or creates new ones as necessary.
//
public override UITableViewCell GetCell (UITableView tableView, NSIndexPath indexPath)
{
var cell = tableView.DequeueReusableCell (CallHistoryController.callHistoryCellId);
int row = indexPath.Row;
cell.TextLabel.Text = controller.PhoneNumbers [row];
return cell;
}
}
`Helloworld_iOS.CallHistoryController.CallHistoryDataSource.RowSelected(UIKit.UITableView, int)' is marked as an override but no suitable method found to override (CS0115)
您好,我正在尝试使用 xamarin monotouch 制作一个 helloworld 应用程序,但我遇到了这个错误。有人可以帮我解决这个问题吗?
谢谢
最佳答案
我猜您使用的是统一 API。
在这种情况下使用这个(nint
而不是 int
):
public override nint RowSelected(UITableView tableView, nint section)
关于ios - 找不到合适的方法来覆盖 RowsInSection xamarin,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27274134/
class CallHistoryDataSource : UITableViewSource { CallHistoryController controller;
我已经对 UITableViewController 进行了子类化,并且在某些时候想找出一个部分中的行数。我想使用: myController.TableView.NumberOfRowsInSect
我是一名优秀的程序员,十分优秀!