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

ios - 将 TableView 添加到 UIViewController 显示 [__NSCFConstantString size] 错误

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

我将 tableView 添加到具有自定义大小的 viewController 中,即我正在定义它的框架。 我没有设置它的委托(delegate),因为我不希望 tableView 执行任何操作。即使我设置它,错误也是一样的。现在这个 tableViewarray 填充 的图像。当我运行应用程序时,它会抛出 [__NSCFConstantString size] 异常。

这就是我正在做的事情

enter image description here

这是viewDidLoad中定义的tableView数据源。

    menuArray = [[NSArray alloc]initWithObjects"icone_what1c.jpg",@"icone_what3c.jpg", @"icone_what2c.jpg",@"icone_what4c.jpg" ,nil];

tableView 数据源方法。

  - (NSInteger)tableViewUITableView *)tableView numberOfRowsInSectionNSInteger)section
  {
       return [menuArray count];
  }


  - (UITableViewCell *)tableViewUITableView *)tableView cellForRowAtIndexPathNSIndexPath *)indexPath
  {
      static NSString *cellIdentifier = @"Cell";
      UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellIdentifier];
      if (cell == nil) {
      cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellIdentifier];
   }

      cell.imageView.image = [menuArray objectAtIndex:indexPath.row];
      return cell;
   }

这是异常的总结。

    [__NSCFConstantString size]: unrecognized selector sent to instance 0x1e25c
   Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[__NSCFConstantString size]: unrecognized selector sent to instance 0x1e25c'
     *** First throw call stack:
    (
0   CoreFoundation                      0x01ce85e4 __exceptionPreprocess + 180
1   libobjc.A.dylib                     0x018d88b6 objc_exception_throw + 44
2   CoreFoundation                      0x01d85903 -[NSObject(NSObject) doesNotRecognizeSelector:] + 275
3   CoreFoundation                      0x01cd890b ___forwarding___ + 1019
4   CoreFoundation                      0x01cd84ee _CF_forwarding_prep_0 + 14
5   UIKit                               0x0059343f -[UIImageView setImage:] + 389
6   AirMapp                             0x0000f187 -[MainViewController tableView:cellForRowAtIndexPath:] + 375
7   UIKit                               0x0052cd2f -[UITableView _createPreparedCellForGlobalRow:withIndexPath:] + 412
8   UIKit                               0x0052ce03 -[UITableView _createPreparedCellForGlobalRow:] + 69
9   UIKit                               0x00511124 -[UITableView _updateVisibleCellsNow:] + 2378
10  UIKit                               0x005245a5 -[UITableView layoutSubviews] + 213
11  UIKit                               0x004a8dd



Best Answer-推荐答案


改变这一行

cell.imageView.image = [menuArray objectAtIndex:indexPath.row];

cell.imageView.image = [UIImage imageNamed:[menuArray objectAtIndex:indexPath.row]];

关于ios - 将 TableView 添加到 UIViewController 显示 [__NSCFConstantString size] 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20738304/

回复

使用道具 举报

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

本版积分规则

关注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