ProMotion
ProMotion copied to clipboard
ProMotion is a RubyMotion gem that makes iPhone development less like Objective-C and more like Ruby.
``` ruby def scrollViewDidEndDecelerating(_) try :on_stopped_scrolling end def scrollViewDidEndDragging(_, willDecelerate: decelerate) try :on_stopped_scrolling unless decelerate end def scrollViewDidScroll(_) try :on_scroll end ``` What think ye?
On the simulator I can't test this, but any of you know if the longpress action will interfere with Iphone 6s 3D touch or some like that? the real question...
Is there a straightforward way to add sibling views to table_view in TableScreen and GroupedTableView? I'm looking specifically at 2 use cases: - (A) when the table_view and a sibling...
can someone point me to an example of putting several pieces of data on one table cell? i'm trying to do something like this: --- ## product 1------------$99.00 ## product...
go here: http://promotion.readthedocs.org/en/master/ search for 'UILabel' click on any of the resulting search results you will be taken to a 'You've found something that doesn't exist.' page
We use `try` a lot internally, but we're also starting to do a lot of `arity` detection to determine what parameters should be sent to the user's subclass like so:...
Is there any way to customize the text, text color and font of the UIRefreshControl on a refreshable TableScreen? Any chance there's a way to customize the color of the...
Here's an example of the problem: https://github.com/fvonhoven/pm_bug_accessory_view I'm unable to capture my click on the UIImageView, seems like a bug.
Thoughts on adding a method that tells the user if a Screen was presented from the "More" tab in a UITabBarController? Basically: ``` ruby def more? self.parentViewController.is_a?(UIMoreNavigationController) end ``` Thoughts...
Per @austinseraphin's tweet: https://twitter.com/AustinSeraphin/status/582650809772568576 > In table_data I specify editing_style: :none but VoiceOver still says Swipe to delete. What have I missed? > VoiceOver offers the delete action on PM’s...