I am new in swift and I am not able to hide ARSLineProgress in iOS 15. Its was working fine below iOS 15. My code is like this
ARSLineProgress.hide()
The hide() function contain
public static func hide() {
ars_hideLoader(ars_currentLoader, withCompletionBlock: nil)
}
I have download pod file from this page
https://github.com/soberman/ARSLineProgress
Did someone face the same issue
This has been fixed on the following PR https://github.com/soberman/ARSLineProgress/pull/36
The fix is to add CATransaction.commit() to the hide function. This was not my work.