当前位置:  开发笔记 > IOS > 正文

UITableView线分隔符可用于iOS 9中的备用单元格

如何解决《UITableView线分隔符可用于iOS9中的备用单元格》经验,为你挑选了1个好方法。

我正面临着UITableView行分隔符的问题.对于替代行,可以看到该行. 缺少替代行的行

将高度为1的UIView添加到单元格将给出解决方案,但这不是正确的方法.以下代码适用于iOS 8,但在9中它表现出不同的性质.

- (IBAction)curencySelect:(id)sender {
    currencyTable = [[UITableView alloc]initWithFrame:CGRectMake(29, 257, 265,113) style: UITableViewStylePlain];
}
#pragma mark -
#pragma mark UITableViewDelegate
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{

    return 1;
}

- (NSInteger)tableView:(UITableView *)table numberOfRowsInSection:(NSInteger)section{


    return currencyArray.count;

}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{


       UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"MyIdentifier"];

       if (cell == nil) {

            cell =[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:@"MyIdentifier"];
       }



    cell.textLabel.text = [currencyArray objectAtIndex:indexPath.row];

    return cell;
}

提前致谢.



1> outfoll..:

模拟器的常见问题,它不能始终显示1个像素视图.在Window-> Scale中将比例设置为100%.

推荐阅读
ifx0448363
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有