Am trying to fix few bugs in UX when implementing the pod from folding cell from RAMotion github link for pod
However looked into few resources here and here was unable to understand the issue.
in FileA in the given function shows an error saying:
Argument labels '
(rawValue:)
' do not match any available overloads
fileprivate func convertToCAMediaTimingFunctionName(_ input: String) -> CAMediaTimingFunctionName {
return CAMediaTimingFunctionName(rawValue: input as String)
}
while looking in the CAMediaTimingFunctionName
it has following code
/* CoreAnimation - CAMediaTimingFunction.h
Copyright (c) 2006-2018, Apple Inc.
All rights reserved. */
public struct CAMediaTimingFunctionName : Hashable, Equatable, RawRepresentable {
public init(rawValue: String)
}