ProMotion icon indicating copy to clipboard operation
ProMotion copied to clipboard

ProMotion is a RubyMotion gem that makes iPhone development less like Objective-C and more like Ruby.

Results 25 ProMotion issues
Sort by recently updated
recently updated
newest added

Apparently there are some deprecated calls that need to be updated. https://motioneers.slack.com/archives/C055RS0VA/p1588922704034900 > I have the following errors running rake in RubyMotion, using Redpotion gem (promotion). /usr/local/Cellar/ruby/2.7.1_2/lib/ruby/gems/2.7.0/gems/ProMotion-3.0.0/lib/ProMotion.rb:9: warning: deprecated Object#=~...

There are three failing tests which need to be fixed. Either the feature is broken or the tests are broken (I'm not sure yet). These are the tests that are...

After transitioning to use WKWebView, the synchronous javascript execution is now blocking. There's a problem with using the semaphore since the the async javascript never calls back to signal it....

To accomplish this, I've done the following: ``` ruby first_button = UIBarButtonItem.alloc.initWithImage(first_image, style: UIBarButtonItemStylePlain, target: self, action: :first_action ) second_button = UIBarButtonItem.alloc.initWithImage(second_image, style: UIBarButtonItemStylePlain, target: self, action: :second_action ) self.navigationItem.rightBarButtonItems...

enhancement
idea

There needs to be a way to set a search scope so that if you set scopes on cells, the scope buttons appear under the search bar. Cells should be...

enhancement
planned

I have a CollectionScreen that I'm using to display dates. If I change the dates on the collection and call `reload_data`, I get the following error: `'NSInternalInconsistencyException', reason: 'UICollectionView received...

Tap and long-press events on the table-rows are handled by ProMotion, but only in the whitespace on the fringes of the table-row. Taps on the subviews of the custom TableViewCell...

Hi. I would like to use more powerful Tab Bars by using a pod like RAMAnimatedTabBarController: https://github.com/Ramotion/animated-tab-bar Their documentation indicates: > Set the class of the UITabBarController to RAMAnimatedTabBarController in...

To whom it may concern, In the documentation, the `CollectionScreen` _should_ call the `on_load` method once `viewDidLoad` gets called. Via manual testing, I found this doesn't happen. I also believe...

I ran into an issue where when setting a `title_view:` on a table section would actually set the RMQ stylesheet I had set on the screen to `nil`, causing all...