-1

I am using Texture(AsyncDisplayKit) But i am facing one problem in below code

let videoNode = ASVideoNode()

Error is: Use of unresolved identifier 'ASVideoNode'

I used pod "Texture" for installation And also added #import <AsyncDisplayKit/AsyncDisplayKit.h> in bridging header file.

What should be the reason for this error?

Neelam Pursnani
  • 246
  • 3
  • 17

1 Answers1

0

You need to import the library.

import AsyncDisplayKit

Also make sure that you open the workspace and not the project file when using pods

Scriptable
  • 19,402
  • 5
  • 56
  • 72