gpt4 book ai didi

ios - 调整 UITable/Cell 宽度

转载 作者:行者123 更新时间:2023-11-29 03:55:24 25 4
gpt4 key购买 nike

我一直在开发一个应用程序,其中包含 ECSlidingViewController 项目,为我提供可以从左侧滑入的导航。导航链接位于 NSArray 中,并使用以下代码动态显示到 UITable 中:

    - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
NSString *cellIdentifier = @"MenuItemCell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellIdentifier];
cell.contentView.backgroundColor=[UIColor blueColor];
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:cellIdentifier];
}

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

return cell;
}

问题是,一旦我们查看滑出 Controller ,文本的长度就无法显示。现在看起来像这样:

enter image description here

如果可能的话,我希望能够减小单元格宽度,甚至将文本分成两行,并使其看起来更像这样:

enter image description here

任何有用的建议将不胜感激!

最佳答案

我最近遇到了完全相同的情况(尽管我使用 ViewDeck 而不是 EDSlidingViewController)。

我的解决方案是更改整个 UITableView 的宽度,而不是将其嵌入到另一个 UIView 中......

关于ios - 调整 UITable/Cell 宽度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16569675/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com