0

I want to install KDCircularProgress I've tried Cocoapods and adding .swift file to the project but I get two errors for that

Property cannot be marked @IBInspectable because its type cannot be represented in Objective-C

and

linker command failed with exit code 1 (use -v to see invocation)

vahidgr
  • 81
  • 10
  • The code is not ready to be used with Swift 4. You can try to fix it manually and address a pull request or just wait for it to be fixed. – Tamás Sengel Aug 08 '17 at 07:59

1 Answers1

1

In the right side in inspector inherit from class KDCircularProgressView try using

@IBOutlet var circularProgressView: KDCircularProgress!
Neeraj Kumar
  • 771
  • 2
  • 16
  • 37