Linker command failed with Undefined symbols for architecture i386

前端 未结 1 1106
庸人自扰
庸人自扰 2020-12-31 13:52

i am trying to do the half page curl feature. This is the code I am using:

#import 


CATransition *animation = [CATransition         


        
1条回答
  •  情书的邮戳
    2020-12-31 14:16

    your app is complaining it can not find CATransition Symbol.

    Did you add the QuartzCore framework to your app?

    If not add it: go to your target settings -> build phases -> link binary -> select the + button and select QuartzCore.

    then import it where you need to use it:

          #import 
    

    0 讨论(0)
提交回复
热议问题