iphone - i have error for importing class related issue..already import class but "unknown type name" in xib project ios -
i import class in class. got error when try create object of class. error got unknown type name "classname"
for example image attached
you have circular dependency/include. think import welcomepage1 in yourplan class use forward declaration (@class yourplan;
) rather #importing header.
either use @class yourplan
or import in .m file
Comments
Post a Comment