Mach-o Linker Error

前端 未结 2 1881
醉话见心
醉话见心 2021-01-24 03:11

I can\'t build my project because I keep getting this error. As I understood it deals with the constant tagShift I\'m using in my code. I would appreciate if anyone could help m

2条回答
  •  情话喂你
    2021-01-24 03:37

    I had faced the same issue someday and figured out the result as:

    Here You have a int tagShit of constant type. So you can not make constant type variables of same name in two or more classes. Change that tagShit variable name in one of the class (may be as tagShift1 or anything else) and it will be good to go.

    Hope it'll help you.

提交回复
热议问题