Kien Nguyen

Results 13 comments of Kien Nguyen

Hmm, it seems that `promise?.reject(...)` is not working. ```swift let promise: Promise = Promise { fulfill, reject in DispatchQueue.main.asyncAfter(deadline: .now() + .seconds(2)) { fulfill("done") } } .then({ s in print(s)...

You should call both `hideLoadMore()` to hide progress bar and `setLoadingMore(false)` so the recyclerView knows that it is no longer in loading more state, then next time it will trigger...

This issue is old but, as I see `ARSPopover` is just a subclass of `UIViewController` which automatically set its `modalPresentationStyle` to `popover`. So you can just subclass `ARSPopover` and set...