Error: Expected specifier-qualifier-list before XXX

前端 未结 3 427
情歌与酒
情歌与酒 2021-01-28 23:50

it did it so many times and i didn\'t had any problems with it, but this time i still getting the error above, my relevant code is this:

#import \"PiecesChoisies         


        
3条回答
  •  逝去的感伤
    2021-01-29 00:21

    The problem will be located in PiecesChoisies.h. Change:

     IBOutlet PiecesChoisies *piecesChoisies;
    

    to

     IBOutlet NSString *piecesChoisies;
    

    that will confirm that the problem is located in the .h file.

提交回复
热议问题