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 me to solve this issue
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试):
问题:
回答1:
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.
回答2:
I guess you have included TrafficLightG.h in more than one file.
#include "TrafficLightG.h"
Declare your const in that way:
TrafficLightG.h
const int tagShift;
TrafficLightG.m
const int tagShift = 90;
PS: use NSInteger or NSUInteger instead of int.