You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When subclassing the web browser view controller in Swift, the library seems to not access the resources anymore, making back / forward bar button images disappear.
The text was updated successfully, but these errors were encountered:
After a quick digging in the code, I can see that in line 408 in KINWebBrowserViewController.m you get the class of the bundle using self, which won't work when subclassing. Explicitly specifying the class name solves the issue: NSBundle *bundle = [NSBundle bundleForClass:[KINWebBrowserViewController class]];
instead of: NSBundle *bundle = [NSBundle bundleForClass:[self class]];
When subclassing the web browser view controller in Swift, the library seems to not access the resources anymore, making back / forward bar button images disappear.
The text was updated successfully, but these errors were encountered: