SAP CodeJam
Join us for SAP CodeJam and learn how to use SAP’s SDK for iOS, built on Swift, to develop apps that integrate with business systems while leveraging the power of iOS.
Join us for SAP CodeJam and learn how to use SAP’s SDK for iOS, built on Swift, to develop apps that integrate with business systems while leveraging the power of iOS.
Every hour on the hour our experts will be hosting 45-min hands-on sessions to help you get started with the SDK.
The SAP Cloud Platform SDK for iOS enables you to quickly develop native apps with Swift, that tap into the services and functions available in the SAP Cloud Platform.
// SAP CodeJam WWDC 2017 Playground
import SAPFiori
import SAPOData
import SAPFoundation
for repeatSAPCodeJamEveryHour in stride(from: 9, through: 18, by: 1) {
learnAtCodeJam(miniEdition: true, WWDC: .AUX)
}
func learnAtCodeJam(miniEdition: Bool, WWDC: WWDC) {
if miniEdition && WWDC == .AUX {
learn(about: "SAP Cloud Platform")
learn(about: "SAP iOS SDK")
BuildApp.now()
}
}
//
// What will you be doing on June 7?
//
func learn(about: String) {
print("Now learning \(about)")
}
enum WWDC {
case AUX
}
class BuildApp {
static func now() {
print("Building app")
}
}