Error: Expected specifier-qualifier-list before XXX

前端 未结 3 429
情歌与酒
情歌与酒 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:31

    If this is in a header file, use

    @class PiecesChoisies;
    

    Instead of the import statement. Import the .h file in your .m file.

提交回复
热议问题