Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有表视图。在 tableview 单元格中,我有一些链接。我想打开那些链接。问题是表格视图单元格的内容来自数据库。那么如何给链接呢?
我有一个 UITableViewCell 中的超链接解决方案。为此,创建一个具有UITextView *txtView. 然后在自定义单元格中添加此代码或更改界面中的属性:
UITextView *txtView
txtView.editable = NO; txtView.dataDetectorTypes = UIDataDetectorTypeLink;
现在使用 UITableView 中的自定义单元格,因为链接将显示为超链接,双击它们将在 Safari 中打开