The problem did not begin long ago, if I create a new class, then when creating a new object of this class, I have to give its name entirely. enter image description here

Maybe someone faced a similar problem.

  • one
    I can’t promise to promise, but it seems to me that if I delete the derived data and thus cause re-indexing, it should work. - Max Mikheyenko 7:38 pm
  • This problem of the latest version of x-code, derived data cleaned, after starting it is clogged again ... - Victor Mishustin

1 answer 1

But I think everything is in the order of things, or something I do not understand. I will give an example of creating an object in Objective-C:

VMStudent *objectVMStudent = [VMStudent new]; 
  • As you can see, Objective-C syntax involves specifying the name of a class when creating an object. - pragmus