nyeu
nyeu
Same here, would be interesting to see how it's done.
We are not using `SceneDelegate` and we are doing it in the `AppDelegate` in `didFinishLaunchingWithOptions`. Everything else its exactly like you commented and the issue is persisting.
I have the same issue, is it possible?
I'm having this issue and honestly with the PR #165 it crashes.
thanks @vbansal13 !! Works like a charm and it was exactly what I needed
Here's the workaround to fix it: ``` let expDouble = Date(timeIntervalSinceNow: 3600) let d: Double = expDouble.timeIntervalSince1970 let i = Int(d) let exp = Date(timeIntervalSinceNow: Double(i)) ```
I have the same problem, any idea?
The way to "solve" the issue is adding [tableView reloadData] at the end of didSelectRowAtIndexPath.
Yes, I know it doesn't sound right but it was the only way to get KILabel working. I looked at the demo project and all the examples available and all...