Eli Burke

Results 27 comments of Eli Burke

I'd suggest you look at https://github.com/jessesquires/JSQMessagesViewController It's very active and modern. I'm trying to find time to switch over myself.

I'd suggest you look at https://github.com/jessesquires/JSQMessagesViewController It's very active and modern. I'm trying to find time to switch over myself.

Core Image supports GIF natively. That's the display logic. Gifu just makes it play nice with Swift.

You may be encountering a situation where protected data is not yet available. Under some rare circumstances your app may be launched (perhaps from a push notification) and ```UIApplication.shared.isProtectedDataAvailable``` returns...

Yes. Always check UIApplication.shared.isProtectedDataAvailable in your appDelegate's application:didFinishLaunchingWithOptions before trying to access Keychain or UserDefaults. If protected data is not available and you require it, you could try to delay...

I can also confirm the stuck notification as reported here and #154, using the current master (3f7d99e2). It only gets "stuck" when a second notification arrives while the first is...

Been struggling with a notification issue myself. My app sends messages that must be saved in draft form before sending, and then updated after upload to server. The primary key...

@IsaiahJTurner it's not ideal but you can do something like this in your notification block: var create_observer: (() -> Void)! create_observer = { if realm.isInWriteTransaction { DispatchQueue.main.asyncAfter(deadline: .now() + 0.1,...

#165 resolves this issue with a particular design pattern. When a page pushes another page, it can optionally pass a reference to itself, indicating that it is the "root" (though...

Saw this article on combining [UIStackView and UIScrollView](https://blog.alltheflow.com/scrollable-uistackview/). Haven't had a chance to digest it but it is still on my radar.