升级到Xcode 7后,链接器命令失败,退出代码为1

时间:2015-11-13 07:26:51

标签: ios xcode7 linker-errors

升级到El Capitan和Xcode 7后,我无法构建我的应用程序。我一直在我的所有全局变量上得到重复的符号。请帮忙。

enter image description here

//Global.h
#ifndef Global_h
#define Global_h

extern NSInteger pickerConstantOne, pickerConstantTwo,numberOfDays, monthOfToday;

NSInteger pickerConstantOne, pickerConstantTwo,numberOfDays, monthOfToday;

#endif /* Global_h */

1 个答案:

答案 0 :(得分:0)

你错误地宣布了这些变数;从标题中删除此语句:

NSInteger pickerConstantOne, pickerConstantTwo,numberOfDays, monthOfToday;

并将其移至.m文件。

您还应该首先检查您使用全局变量的确切原因,因为您当然不需要。