
ApplicationUIManaging
protocol.ApplicationUIManager
which does not conform to protocol ApplicationUIManaging
.Example of error due to breaking changes in SAPFioriFlows.ApplicationUIManaging protocol
scene sessionID: String?
, which you have to add to your implementation of functions:showApplicationScreen(completionHandler:)
hideApplicationScreen(completionHandler:)
class ApplicationUIManager: ApplicationUIManaging {
func showApplicationScreen(completionHandler: @escaping (Error?) -> Void) {
// your code
}
func hideApplicationScreen(completionHandler: @escaping (Error?) -> Void) {
// your code
}
}
scene sessionID: String?
as a new function argument:class ApplicationUIManager: ApplicationUIManaging {
func showApplicationScreen(scene sessionID: String?, completionHandler: @escaping (Error?) -> Void) {
// your code (no changes required unless you want adopt Multi-Window support)
}
func hideApplicationScreen(scene sessionID: String?, completionHandler: @escaping (Error?) -> Void) {
// your code (no changes required unless you want adopt Multi-Window support)
}
}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
18 | |
11 | |
7 | |
7 | |
6 | |
6 | |
6 | |
5 | |
5 | |
5 |