您好,我是 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-推荐答案 strong>
您正在使用 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/
|