Duplicate Symbol Error

后端 未结 11 1892
情书的邮戳
情书的邮戳 2021-01-18 03:44

I\'m not sure what I did but I added an IBOutlet to display an additional attribute in a TableView cell. When building the application I get the following error message...

11条回答
  •  臣服心动
    2021-01-18 04:02

    i had meet same problem, and i solved it. When i copy and paste my view and view controller with different name, i got this error (dublicate sembol in _temp). i solved this error by changing constant name. You can also move your constant between implemantation bracets. My examples code below. And my constant name is temp.

        @implementation MyCombineSaveTableView
    {
        BOOL *pulltoRefResh;
        NSString *currentElement;
        int temp;
        int User_ID;
    }
    

提交回复
热议问题