Hovak Davtyan

Results 3 comments of Hovak Davtyan

The issue is still actual in version 5.2.0 on iOS14 and inputBar.inputTextView.text = inputBar.inputTextView.text doesn't seem to help. Any news on this issue?

This solved the issue: private func setAttachmentManager(active: Bool) { if active, !topStackView.arrangedSubviews.contains(attachmentManager.attachmentView) { topStackView.insertArrangedSubview( attachmentManager.attachmentView, at: topStackView.arrangedSubviews.count ) topStackView.layoutIfNeeded() } else if !active, topStackView.arrangedSubviews.contains(attachmentManager.attachmentView) { attachmentManager.attachmentView.removeFromSuperview() invalidateIntrinsicContentSize() inputTextView.layoutIfNeeded() topStackView.layoutIfNeeded() }...

Same issue on M1 when using SPM, none of the known solutions except Rosetta simulation work. Apple provides documentation on the issue here: https://developer.apple.com/documentation/technotes/tn3117-resolving-build-errors-for-apple-silicon#Update-pre-compiled-libraries-from-vendors Please have a look, this can...