cannot assign value of type 'AASquaresLoading' in Xcode 8.2.1
Clash Royale CLAN TAG#URR8PPP
cannot assign value of type 'AASquaresLoading' in Xcode 8.2.1
I got this error while compiling the project in in Xcode 8.2.1.
cannot assign value of type 'AASquaresLoading' to type
'CAAnimationDelegate?'
Is there any solution to solve this error?
AASquaresLoading
CAAnimationDelegate
dunno brother can we contact gmail? @vacawama
– jassim
Aug 6 at 16:25
No. That violates the spirit of Stack Overflow. Questions and answers are posted here to help others with the same issue.
– vacawama
Aug 6 at 16:26
Your
AASquaresLoading
should adopt the CAAnimationDelegate
protocol. Add CAAnimationDelegate
to the class
definition line: something like class AASquaresLoading: CAAnimationDelegate
. You'll probably have to implement some required methods if CAAnimationDelegate
has any.– vacawama
Aug 6 at 16:29
AASquaresLoading
CAAnimationDelegate
CAAnimationDelegate
class
class AASquaresLoading: CAAnimationDelegate
CAAnimationDelegate
@vacawama am facing this error for 4 weeks now brother.
– jassim
Aug 6 at 16:34
By clicking "Post Your Answer", you acknowledge that you have read our updated terms of service, privacy policy and cookie policy, and that your continued use of the website is subject to these policies.
Does
AASquaresLoading
adopt theCAAnimationDelegate
protocol?– vacawama
Aug 6 at 16:23