SwinjectStoryboard icon indicating copy to clipboard operation
SwinjectStoryboard copied to clipboard

Swinject extension for automatic dependency injection via Storyboard

Results 33 SwinjectStoryboard issues
Sort by recently updated
recently updated
newest added

Bumps [tzinfo](https://github.com/tzinfo/tzinfo) from 1.2.5 to 1.2.10. Release notes Sourced from tzinfo's releases. v1.2.10 Fixed a relative path traversal bug that could cause arbitrary files to be loaded with require when...

dependencies

macOS Monterey 12.4 (21F79) Xcode Version 13.2.1 (13C100) inside my podfile Target: ``` platform :ios, '10.0' pod 'Swinject', '~> 2.6.2' pod 'SwinjectStoryboard' ``` Do I have to target iOS 13...

Hello. I'm currently trying to update Swinject and SwinjectStoryboard on a specific project, using CocoaPods. In this project, it is required that all dependencies versions are explicitly specified on the...

Upgraded SwinjectStoryboard to 2.2.2 and suprisingly faced with trouble of setup method not being called at all, so all implicit injects are now not working. Also, XCode 13 warns me...

Bumps [cocoapods-downloader](https://github.com/CocoaPods/cocoapods-downloader) from 1.2.1 to 1.6.3. Release notes Sourced from cocoapods-downloader's releases. 1.6.3 Enhancements None. Bug Fixes None. 1.6.2 Enhancements None. Bug Fixes None. 1.6.1 Enhancements None. Bug Fixes None....

dependencies

As discussed in PR #157, dependencies are not injected if used with `instantiateInitialController` on macOS. This issue does not appear on iOS/tvOS. It looks the cause relates to the new...

bug

Fix carthage build by checking in the generated Swift header file into the project. Perhaps some tweaking of search paths would solve the problem too but I could not figure...

In order to support `xcframeworks` project needs to look for dependencies in `Carthage/Build` instead of `Carthage/Build/${PLATFORM}`

All of my ViewControllers have a common parent, lets say P. Is there a way to inject the parameters for this common parent whitout having to do this in each...

I have found an issue with SwinjectStoryboard, I am trying to create two instances of the same view controller: I.E. Here are my dependencies: ``` container.register(MyViewModeling.self) { r in MyViewModel(someDependency)...