Swinject/SwinjectStoryboard

Cannot find interface declaration for 'SwinjectStoryboard'

adamayoung opened this issue · 1 comments

I cannot build SwinjectStoryboard with Carthage. I haven't changed any versions, Cartfile.resolved hasn't changed, and I'm doing carthage update.

/Users/xxx/Carthage/Checkouts/SwinjectStoryboard/Sources/SwinjectStoryboard+SetUp.m:18:12: error: cannot find interface declaration for 'SwinjectStoryboard'
@interface SwinjectStoryboard (SetUp)
           ^
/Users/xxx/Carthage/Checkouts/SwinjectStoryboard/Sources/SwinjectStoryboard+SetUp.m:22:17: error: cannot find interface declaration for 'SwinjectStoryboard'
@implementation SwinjectStoryboard (SetUp)
                ^
/Users/xxx/Carthage/Checkouts/SwinjectStoryboard/Sources/SwinjectStoryboard+SetUp.m:27:10: error: use of undeclared identifier 'SwinjectStoryboard'
    if ([SwinjectStoryboard conformsToProtocol:@protocol(SwinjectStoryboardProtocol)] &&
         ^
/Users/xxx/Carthage/Checkouts/SwinjectStoryboard/Sources/SwinjectStoryboard+SetUp.m:28:10: error: use of undeclared identifier 'SwinjectStoryboard'
        [SwinjectStoryboard respondsToSelector:@selector(setup)]) {
         ^
/Users/xxx/Carthage/Checkouts/SwinjectStoryboard/Sources/SwinjectStoryboard+SetUp.m:29:10: error: use of undeclared identifier 'SwinjectStoryboard'
        [SwinjectStoryboard performSelector:@selector(setup)];
         ^
5 errors generated.

Just seen this has already been raised as an issue here:
https://github.com/Swinject/SwinjectStoryboard/issues/138