Questions tagged «uitableview»

UITableView是用于在iOS上显示和编辑信息列表的类。表格视图在单个列中显示项目。UITableView是UIScrollView的子类,尽管UITableView仅允许垂直滚动,但它允许用户滚动表。

8
如何通过indexPath获取uitableViewCell?
我怎样才能获得UITableViewCell通过indexPath?像这样: UIActionSheet单击确定时,UIButton我要使用,我想更改单元格文本。 我定义为属性的nowIndex - (void)actionSheet:(UIActionSheet *)actionSheet clickedButtonAtIndex:(NSInteger)buttonIndex { if (buttonIndex == 0) { NSInteger section = [nowIndex section]; NSInteger row = [nowIndex row]; NSDateFormatter *formatter = [[[NSDateFormatter alloc] init] autorelease]; formatter.dateFormat = @"yyyy-MM-dd"; if (section == 0) { if (row == 0) { } else if (row == 1) { …

17
选择UITableViewCell时,UIView backgroundColor消失
我在接口构建器中有一个简单的tableViewCell构建。它包含一个UIView,其中包含一个图像。现在,当我选择单元格时,将显示默认的蓝色选择背景,但是UIView的backgroundColor消失了。 我的UITableViewCell的实现文件没有做任何特殊的事情。它只是init的&返回self,而我在setSelected中所做的就是调用super。 如何让我的UIView的backgroundColor时选择的tableView时,说明了什么?

3
通过segue传递数据
我正在用tableview控制器和detailView做一个简单的iOS应用程序。我想要的只是通过segue传递数据。 这就是它的样子。 我想要的就是您单击“Markíza”将打开URL视频1,如果您单击“ TV JOJ”将打开URL视频2在播放器中。 我的tableview单元格: struct Program { let category : String let name : String } var programy = [Program]() self.programy = [Program(category: "Slovenské", name: "Markíza"), Program(category: "Slovenské", name: "TV JOJ")]

9
UITableView页脚,停止浮动内容
我想让UITableView页脚停止浮动在我的内容上,这是默认活动。我希望我的页脚是..很好..页脚。总是将最后一个视图显示在表视图的末尾。:) 实际上也与标题相同。 有什么简单的方法可以使它在滚动时不能悬浮在表格视图上方? 谢谢大家,我在其他地方找不到答案。
70 ios  uitableview  uikit 

8
在Swift中将HTML转换为纯文本
我正在开发一个简单的RSS Reader应用程序,作为Xcode中的初学者项目。目前,我已设置它解析提要,并将标题,发布日期,描述和内容放置在WebView中。 我最近决定在用于选择帖子的TableView中显示说明(或内容的删节版本)。但是,这样做时: cell.textLabel?.text = item.title?.uppercaseString cell.detailTextLabel?.text = item.itemDescription //.itemDescription is a String 它显示了帖子的原始HTML。 我想知道如何仅将TableView的详细UILabel转换为纯HTML。 谢谢!
68 ios  swift  uitableview 


13
如何像UITableView纯样式中的节头一样使UICollectionView中的补充​​视图浮动
我正在努力实现的“浮动节头”效果UICollectionView。在没有很多努力的UITableView情况下,(的默认行为UITableViewStylePlain)足够简单的事情似乎是不可能的UICollectionView。我想念明显的东西吗? Apple没有提供有关如何实现此目的的文档。似乎必须继承UICollectionViewLayout并实现自定义布局才能实现此效果。这需要大量的工作,实现以下方法: 替代方法 每个布局对象都应实现以下方法: collectionViewContentSize layoutAttributesForElementsInRect: layoutAttributesForItemAtIndexPath: layoutAttributesForSupplementaryViewOfKind:atIndexPath: (if your layout supports supplementary views) layoutAttributesForDecorationViewOfKind:atIndexPath: (if your layout supports decoration views) shouldInvalidateLayoutForBoundsChange: 但是,我不清楚如何使辅助视图浮动在单元格上方并“粘”在视图顶部,直到到达下一部分为止。布局属性中是否有此标志? 我会用过,UITableView但我需要创建一个相当复杂的集合层次结构,使用集合视图即可轻松实现。 任何指导或示例代码将不胜感激!


4
Xcode 7 iOS 9 UITableViewCell分隔符插入问题
这不是问题,而是我所面临问题的解决方案。 在Xcode 7中,当该应用程序在iPad设备上的iOS 9上运行时,UITableViewCell在的左侧留有一些空白UITableView。将设备旋转到地面会增加边距。 我找到的解决方案是: 设定cellLayoutMarginsFollowReadableWidth为NO。 self.tbl_Name.cellLayoutMarginsFollowReadableWidth = NO; 此属性仅在iOS 9中可用。因此,您必须设置条件以检查iOS版本,否则它将崩溃。 if (NSFoundationVersionNumber > NSFoundationVersionNumber_iOS_8_1) { self.tbl_Name.cellLayoutMarginsFollowReadableWidth = NO; }
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.