Steve Thompson
Steve Thompson
I'm still seeing it in the release version of Xcode 6.
Ok, cool. @edwardmp thanx for the info.
Another solution is to not use it in IB but add it programmatically. It works then.
Good one @sanvean !
I had mine in a tableViewCell and this still didn't work. I had to wrap it in a DispatchQueue.main.async { } call and then call setNeedsLayout() inside the dispatchQueue. You...
Actually been fiddling with it and it does work with the latest version of DT and Alfred v3.
Did you try setting the UITextView's scrolling off? textView.textContainerInset = .zero textView.textContainer.lineFragmentPadding = 0 textView.isScrollEnabled = false textView.sizeThatFits(.init(width: width, height: .greatestFiniteMagnitude))
try .height?
Ok this is now merged. Thanx @CocoaDebug
Did you try moving it to `willFinishLaunchingWithOptions` instead? You have to enable CoacoaDebug before you call to setup FB. So try moving the call to enable prior to your call...