如何减少表视图控制器的宽度
大家好,
我如何减少表格视图单元格的宽度?
我正在使用以下代码来增加行的高度,以同样的方式我如何改变单元格的宽度
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
switch(indexPath.section)
{
case 0:
{
switch(indexPath.row)
{
case 0:
{
return 100;
}
break;
case 1:
{
return 40;
}
break;
case 2:
{
return 40;
}
break;
case 3:
{
return 40;
}
break;
default:
{
return 15;
}
}
}
break;
}
hii every one
how dod i reduce the width of the table view cell?
i am using following code to increase the height of the row ,, in the same way how can i alter width of the cell
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
switch(indexPath.section)
{
case 0:
{
switch(indexPath.row)
{
case 0:
{
return 100;
}
break;
case 1:
{
return 40;
}
break;
case 2:
{
return 40;
}
break;
case 3:
{
return 40;
}
break;
default:
{
return 15;
}
}
}
break;
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如前所述,单元格将始终具有相同的宽度,但是如果您希望缩进内容以显示主从关系,则使用...
As mentioned a cell will always have the same width, if however you wish to indent the content to show a master-detail relationship then use...
UITableViewCell 将始终占据显示单元格的 UITableView 的完整宽度。
An UITableViewCell will always take the full width of the UITableView that is displaying the cell.