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
SRGVersionUpdater.executeVersionCheck() always occurs assertion error of BlocksKit when there is updates.
AppDelegate.swift:
let versionUpdater = SRGVersionUpdater()
versionUpdater.endPointUrl = url
versionUpdater.executeVersionCheck()
And the assertion error was raised here
- (NSInteger)bk_addButtonWithTitle:(NSString *)title handler:(void (^)(void))block
NSAssert(title.length, @"A button without a title cannot be added to the alert view.");
because self.updateButtonText was null at this code:
SRGVersionUpdater.executeVersionCheck() always occurs assertion error of BlocksKit when there is updates.
AppDelegate.swift:
And the assertion error was raised here
because self.updateButtonText was null at this code:
I think it is same as this issue:
MatthewYork/DateTools#56
My environment:
Xcode: 7.1 (Swift)
CocoaPods version 0.39.0
Podfile:
I could fix it by copying SRGVersionUpdater.Bundle directory into main Xcode project.
But it is good to be fixed inside of this library.
The text was updated successfully, but these errors were encountered: