how to import a class present inside a custom framework in swift

Viewed 3084

I have a custom frame work and it contains some public class.But i cannot able to use that public class. In objective C we can import as

#import <XYZ/XYZCustomCell.h>

but how is it possible in swift

2 Answers
Related