1

I know I can fold blocks by pressing command + option + left arrow

But the problem is when I'm trying to fold a block of lazy codes.

Example:

private lazy var linePass: UIView = {
        let line = UIView()
        line.backgroundColor = .lightGray
        return line
    }()

But It doesn't work.

Mahdi
  • 31
  • 1
  • 5

1 Answers1

0

Correct. This is fixed in Xcode 10 beta 3.

Nima Yousefi
  • 817
  • 6
  • 11