我只是想为用户提供一个在我的应用中创建票证的表单。除此之外,不需要其他任何东西。
我在这里https://developer.zendesk.com/embeddables/docs/ios_support_sdk/requests使用了方法
这是我的代码
//Create a configuration object
let config = RequestUiConfiguration()
config.subject = "App Ticket"
config.tags = ["ios", "testing"]
config.ticketFormID = 20
//Present the SDK
let requestScreen = RequestUi.buildRequestUi(with: [config])
self.navigationController?.pushViewController(requestScreen, animated: true)
但是我的应用程序中显示的屏幕没有发送按钮或返回按钮。我也将颜色设置为橙色,但也看不到该变化。
Theme.currentTheme.primaryColor = UIColor.orange
带有Zendesk徽标的底部栏将我带到zendesk页面
我在应用程序委托中也进行了正确的设置
Zendesk.initialize(appId: "myAppID",
clientId: "myClientID",
zendeskUrl: "myURL")
Support.initialize(withZendesk: Zendesk.instance)