• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

ios - UISlider 不在原型(prototype)单元中滑动

[复制链接]
菜鸟教程小白 发表于 2022-12-13 13:04:11 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

我在 Storyboard 的 View Controller 中设计了一个原型(prototype)单元格,但不幸的是单元格中的 UISlider 没有滑动。

注意:-此 Storyboard 已启用自动布局。

设计:-

enter image description here

这里是代码:-UITableview

中渲染单元格
- (UITableViewCell *)tableViewUITableView *)tableView cellForRowAtIndexPathNSIndexPath *)indexPath {

    UITableViewCell *cell;
    if(indexPath.row!=self.arrSelectRecipientsImages.count-1 )
    {

        cell = [tableView dequeueReusableCellWithIdentifier"selectReciptenceTabCell" forIndexPath:indexPath];

    }
    else
    {
        cell = [tableView dequeueReusableCellWithIdentifier"selectNearbyTabCell" forIndexPath:indexPath];
        UISlider *sliderNearby = (UISlider *)[cell.contentView viewWithTag:199];
        lblDistance = (UILabel *)[cell.contentView viewWithTag:190];
        sliderNearby.userInteractionEnabled = YES;
        [sliderNearby setThumbImage:[UIImage imageNamed"NearbyCircle"] forState:UIControlStateNormal];
        [sliderNearby addTarget:self actionselector(sliderNearbyAction forControlEvents:UIControlEventValueChanged];
  }
return cell;
}



Best Answer-推荐答案


我认为代码运行良好。 也无需设置用户交互。

这是示例代码,您可以从中获得帮助。使用自动布局可以正常工作。

- (UITableViewCell *)tableViewUITableView *)tableView cellForRowAtIndexPathNSIndexPath *)indexPath{
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier"cell" forIndexPath:indexPath];

    UILabel *lblTitle = (UILabel *)[cell viewWithTag:100];
    lblTitle.text = @"Hi";

    UISlider *slider = (UISlider *)[cell viewWithTag:101];
    slider.value = 0.2;
    slider.tag = indexPath.row;
    [slider addTarget:self actionselector(sliderNearbyAction forControlEvents:UIControlEventValueChanged];
    return cell;
}

- (void)sliderNearbyActionUISlider *)sender{
    NSLog(@"Slider %ld Value : %.2f",(long)sender.tag, sender.value);
}

带日志的输出:

enter image description here

自动布局屏幕截图:

enter image description here

关于ios - UISlider 不在原型(prototype)单元中滑动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34488856/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap