升级到El Capitan和Xcode 7后,我无法构建我的应用程序。我一直在我的所有全局变量上得到重复的符号。请帮忙。
//Global.h
#ifndef Global_h
#define Global_h
extern NSInteger pickerConstantOne, pickerConstantTwo,numberOfDays, monthOfToday;
NSInteger pickerConstantOne, pickerConstantTwo,numberOfDays, monthOfToday;
#endif /* Global_h */
答案 0 :(得分:0)
你错误地宣布了这些变数;从标题中删除此语句:
NSInteger pickerConstantOne, pickerConstantTwo,numberOfDays, monthOfToday;
并将其移至.m
文件。
您还应该首先检查您使用全局变量的确切原因,因为您当然不需要。