只是想知道是否有人可以通过 CSS 甚至 JS 将段落间距视觉效果添加到文本区域内的文本中?
我知道行高,但想在文本区域内的段落本身之前/之后添加间距的印象,而不是必须在文本区域内按两次 Enter 以获得段落之间的空格。
单独使用文本区域是否可以实现这一点,或者我是否需要考虑富文本编辑器,或者甚至自己编写一个带有段落间距的简单文本编辑器?(我不想走这条路,因为我只是在段落间距之后,而不是文本编辑器附带的所有附加格式选项)
我已经使用本教程在我的ViewController中成功嵌入了一个UICollectionView内部UITableView.
下面可能会更有意义,如果你有一个快速浏览一下链接教程的代码(加上其学习过一记漂亮的东西!):
对我来说,下一步是从tableView UICollectionView内部的单元格执行segue UITableViewCell,但由于collectionView出口是在单独的View Controller中建立的,我不知道如何在主ViewController中引用它.
在TableViewCell.swift中有:
class TableViewCell: UITableViewCell {
@IBOutlet private weak var collectionView: UICollectionView!
}
extension TableViewCell {
func setCollectionViewDataSourceDelegate<D: protocol<UICollectionViewDataSource, UICollectionViewDelegate>>(dataSourceDelegate: D, forRow row: Int) {
collectionView.delegate = dataSourceDelegate
collectionView.dataSource = dataSourceDelegate
collectionView.tag = row
collectionView.reloadData()
}
}
Run Code Online (Sandbox Code Playgroud)
在ViewController.swift中,我需要能够,例如,在ViewController.swift文件中调用函数中的TableViewCell中的collectionViewprepareForSegue.我只需要用collectionView插座填补空白:
let destination = segue.destinationViewController as! SecondViewController
let indexPaths = self.___________.indexPathsForSelectedItems()
let indexPath = indexPaths![0] as NSIndexPath
let arrayObject = self.arrayObjects[indexPath.row]
destination.object = arrayObject
Run Code Online (Sandbox Code Playgroud)
'object'在SecondViewController中实现,如此var object: …