1

I am using swift package in several projects. In one of them, this package stopped compiling with error "Cannot find type 'any UITableView related type ' in scope". I can't fix it by any action. I tried:

Clean Build folder Reset Package Caches Readd package Clean DerivedData and restart xcode and computer In different combinations

Of course, I didn't forget 'import UIKit'.

What action can I try else?

UPDATE:

Actually any type from UIKit is not visible in package.

All other packages do not have any problems with UIKit.

This package does not have any problems in other projects.

Alexey
  • 79
  • 7

1 Answers1

-1

Remove all #import in bridging header of files contained in pods libraries

CTABUYO
  • 662
  • 2
  • 7
  • 27