Hi, I am currently experiencing a bug in Xcode 26 (might be in earlier versions too) where I try to load the FeatureFlagsViewController like this:
guard let navigationController = self.navigationController else {
return
}
let navigationSettings = ViewControllerNavigationSettings(
autoClose: true,
closeButtonAlignment: .closeButtonLeftActionButtonRight,
closeButton: .done,
isNavigationBarHidden: false
)
FeatureFlagsUI.autoRefresh = true
FeatureFlagsUI.pushFeatureFlags(
navigationController: navigationController,
navigationSettings: navigationSettings
)
The problem is that FeatureFlagTableViewCell could not be found, as it is looking in the app bundle, not in the FeatureFlags Bundle. I fixed this temporarily by copying FeatureFlagTableViewCell.xib into my app resources. I use SPM to include this library.
Hi, I am currently experiencing a bug in Xcode 26 (might be in earlier versions too) where I try to load the
FeatureFlagsViewControllerlike this:The problem is that
FeatureFlagTableViewCellcould not be found, as it is looking in the app bundle, not in theFeatureFlagsBundle. I fixed this temporarily by copyingFeatureFlagTableViewCell.xibinto my app resources. I use SPM to include this library.