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

ios - 在表格 View 中滚动自定义表格单元格时出错

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

您好,我是 iOS 开发的新手,我遇到了关于在表格 View 中滚动自定义单元格的问题。我的表格 View 有大约 7 个单元格,但是一旦我在运行后 ScrollView ,我将只得到前 5 个单元格,如下所示,但即使很难显示其余单元格,我们也无法完全滚动查看这些单元格.

这是我的 viewController.m 代码

#import "ViewController.h"
#import "MobileTableCell.h"

@interface ViewController ()
{
    NSArray *tableData;
    NSArray *thumbnails;

}

@end

@implementation ViewController

- (void)viewDidLoad
{
    [super viewDidLoad];
    // Do any additional setup after loading the view, typically from a nib.
    tableData = [NSArray arrayWithObjects"Iphone 5s",@"Google Nexus 5", @"Samsung Galaxy S4",@"HTC one", @"LG G2", @"Moto X", @"Micromax Turbo", nil];

    thumbnails = [NSArray arrayWithObjects"iphone5.jpg",@"nexus5.png",@"galaxys4.jpg",@"htcone.jpg",@"lgg2.jpg",@"motox.png",@"micromaxcanvasturbo2.jpg", nil];
}

- (NSInteger)tableViewUITableView *)tableView numberOfRowsInSectionNSInteger)section
{
    return [tableData count];
}
- (NSInteger)numberOfSectionsInTableViewUITableView *)tableView
{
//#warning Potentially incomplete method implementation.
    // Return the number of sections.
    return 1;
}

- (UITableViewCell *)tableViewUITableView *)tableView cellForRowAtIndexPathNSIndexPath *)indexPath
{
    static NSString *simpleTableIdentifier = @"MyMobileTableCell";

    MobileTableCell *cell = (MobileTableCell *)[tableView dequeueReusableCellWithIdentifier:simpleTableIdentifier];
    //NSLog(@"%@",cell);
    if (cell == nil) {
        NSArray *nib = [[NSBundle mainBundle] loadNibNamed"MobileTableCell" owner:self options:Nil];
        cell = [nib objectAtIndex:0];
    }
//    cell.layer.shouldRasterize = YES;
    cell.nameLabel.text = [tableData objectAtIndex:indexPath.row];
    cell.thumbnailImageView.image = [UIImage imageNamed:[thumbnails objectAtIndex:indexPath.row]];
    return cell;
}

- (void)didReceiveMemoryWarning
{
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}

- (CGFloat)tableViewUITableView *)tableView heightForRowAtIndexPathNSIndexPath *)indexPath
{
    return 78;
}
@end

请让我知道我哪里出错了。提前致谢。



Best Answer-推荐答案


您正在使用 UIViewController 来呈现 UITable,因为您有:@interface ViewController : UIViewController 。最好直接使用 UITableViewController 提供的 @interface ViewController : UITableViewController。如果您有使用 UIView 的正当理由,则需要将委托(delegate)和数据源设置为 self:

tableView.delegate = self;
tableView.dataSource = self;

您还需要确保在 UIView 上没有任何其他可滚动的内容使表格 View 像 UIScrollView 或其他东西一样滚动出页面像那样。您可以使用自动布局来帮助您查看内容。

最后一点,您的问题可能是 UINavigationController 覆盖表格部分的结果。如果您使用的是 UIView,则需要向 UITable 添加内容边距,以确保 navigationController 不会隐藏行。

关于ios - 在表格 View 中滚动自定义表格单元格时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21699660/

回复

使用道具 举报

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

本版积分规则

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