Mark Rickert
Mark Rickert
As per #690, including the `tableView:commitEditingStyle:forRowAtIndexPath:` in a extended module breaks actual deleting functionality. I'm pretty sure that it has to be included in the class when the class is...
Based on https://gist.github.com/d-ronnqvist/3584ccf3379f9c318e4f I think i may have found a valid solution to this. @austinseraphin can you please check out the branch `bug/690-edit-table` and let me know if this works...
Also note that cell Heights must be declared in the cell hash, not in the stesheet. Again, this has to do with how Apple designed UITableViews. Make sure to read...
`CURRENT-STATUS-BOT` ACTIVATED! :zap: BEEP :zap: BOOP :zap: BEEP :zap: ``` ------------------------------- | | | Inquiry: | | Current status of | | proposed implementation. | | | | Status Report:...
hmmm... as soon as i get access to a device is force touch i'll check this. Some work has already been done to support easy force touch recognition on bubblewrap...
:+1: This has been needing to be fixed for a while now. Should be an easy fix.
easiest way to check is to clone this repos, then change the gemfile in your project to: ``` ruby gem "ProMotion", path: "../ProMotion" ``` then run `bundle` in your project...
Haven't tested but it looks like we might be able to do something like this to support as many arguments as we want. ``` ruby def try(method, *args) if respond_to?(method)...
The above works flawlessly in my tests :P