Demo eines Kotlin Mutliplatform Project (KMPP)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
KotlinDemo/native/KotlinNativeDemo/ViewController.swift

28 lines
582 B

//
// ViewController.swift
// KotlinNativeDemo
//
// Created by Jonas Franz on 02.04.18.
// Copyright © 2018 Jonas Franz. All rights reserved.
//
import UIKit
import KotlinDemoFramework
class ViewController: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
print(KDFPlatform().platform())
// Do any additional setup after loading the view, typically from a nib.
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
}