6 Commits

Author SHA1 Message Date
429646f392 Fix swipe-back in iOS 2016-03-25 13:45:05 +02:00
de6a92f8c6 Fix tslint errors. 2016-02-24 11:06:15 +02:00
99d4f9ea0c Replace -[NSObject performSelector:] with NSInvocation
It appears that `-[NSObject performSelector:]` returns a dummy value when calling a void method on the iOS Simulator, whereas it correctly returns `nil` on a device. Since `-[NSObject performSelector:]` is declared as returning `id`, the iOS runtime tries to marshal the dummy value to a JavaScript object and fails because the dummy value is not a valid Objective-C object.

The fix is to use `-[NSObject valueForKey:]` for non-void zero-parameter methods and `NSInvocation` for everything else.
2016-02-10 18:19:04 +02:00
5ad082d783 Re-factored page navigation transitions. Resolves Issue #811. 2016-02-10 14:55:27 +02:00
a8aaeac137 Merged with master after the transitions feature 2016-02-03 15:24:38 +02:00
b0976bf986 Resolved #811: Page Navigation Transitions 2016-02-03 13:24:12 +02:00