表格默认选择某行

Posted 牵着蜗牛走的我

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了表格默认选择某行相关的知识,希望对你有一定的参考价值。

-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
    ProductTypeCell *mProductTypeCell = [tableView dequeueReusableCellWithIdentifier:productTypeindterfier];
    mProductTypeCell.selectedBackgroundView = [[UIView alloc] initWithFrame:mProductTypeCell.frame];
    mProductTypeCell.selectedBackgroundView.backgroundColor  = [UIColor whiteColor];
//    另外修改字体的颜色
    mProductTypeCell.typeLable.highlightedTextColor = RGB(0x00bdbe);
    ProductListModel *mProductListModel = _dataArray[indexPath.row];
    mProductTypeCell.typeLable.text = [NSString stringWithFormat:@"%@",mProductListModel.productTypeName];
//默认中    
[_productTableView selectRowAtIndexPath:[NSIndexPath indexPathForItem:
0 inSection:0] animated:YES scrollPosition:UITableViewScrollPositionTop]; if ([_productTableView.delegate respondsToSelector:@selector(tableView:didSelectRowAtIndexPath:)]) {
[_productTableView.
delegate tableView:_productTableView didSelectRowAtIndexPath:[NSIndexPath indexPathForItem:0 inSection:0]]; } return mProductTypeCell; }

 

以上是关于表格默认选择某行的主要内容,如果未能解决你的问题,请参考以下文章

EasyUI datagrid 如何默认选择多行

ant design vue 表格 多选默认选择某几项(数据回显问题)

element UI表格组件点击某行某行高亮显示

如何在 Vs Code 中更改默认自动选择的用户片段行为

vue如何获取表格某行数据

VS2015 代码片段整理