Eugene Trapeznikov
Eugene Trapeznikov

Reputation: 3240

Use of undeclared identifier in my CocoaPod

I want to create my own cocoapod. Everything was OK until I've tried use my pod in a example project.

Cocoapods downloaded my project and I am able to import pod. But I can't use any file from this pod. Using any fail leads to Use of undeclared identifier error. But all files are already in the project.

enter image description here

Deleting of derived data and cleaning project don't help me.

What could be wrong?

P.S. This is the link to my project if needed. https://github.com/EugeneTrapeznikov/ETCollapsableTable

Upvotes: 0

Views: 1274

Answers (1)

Peter Todd
Peter Todd

Reputation: 8651

Try making ETCollapsableTableItem public:

public class ETCollapsableTableItem

Upvotes: 2

Related Questions