1. Register for e.g. the free plan on https://uservoice.com
cd your-motion-project/vendor
git clone https://github.com/uservoice/uservoice-iphone-sdk
…
app.vendor_project('vendor/uservoice-iphone-sdk', :xcode)
…
# Make sure these two frameworks are added somehow:
app.frameworks << 'QuartzCore'
app.frameworks << 'SystemConfiguration'
…
Get your credentials from: https://< yoursubdomain >.uservoice.com/admin/settings#/channels
Trigger this code from e.g. a button:
class YourController < ...
…
def support_page
config = UVConfig.configWithSite("< your subdomain >.uservoice.com", andKey: "< key from uservoice >", andSecret: "< secret >")
UserVoice.presentUserVoiceInterfaceForParentViewController(self, andConfig: config)
end
…
Thank you! Works well..
if you use ProMotion you can use it like so: